-
-
Save Abhisirwabotofc/a2d1157743ae7647c9480f9eb5f71c2c to your computer and use it in GitHub Desktop.
owner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const hyper = require("../Utilis/events"); | |
let {MessageType, MessageOptions, Mimetype} = require('@adiwajshing/baileys') | |
const { getBuffer } = require('../Utilis/download'); | |
//Owner vcard by favas | |
hyper.addCommand( //by favas... | |
{ pattern: "owner ?(.*)", fromMe: true, desc: "send owner vcard" }, | |
async (message, match) => { | |
const vcard = 'https://i.imgur.com/TFVIDhj.jpeg' | |
const favas = 'BEGIN:VCARD\n' | |
+ 'VERSION:3.0\n' | |
+ 'FN:ππ¬π§-π°πππ¨\n'//dont copy without credits β οΈ | |
+ 'ORG:ππ¬π§-π°πππ¨\n' | |
+ 'TEL;type=CELL;type=VOICE;waid=919656432620:919656432620\n' | |
+ 'END:VCARD' | |
const buff = await getBuffer(vcard) | |
await message.client.sendMessage(message.jid, {displayname: "ππ¬π§-π°πππ¨", vcard: favas}, MessageType.contact,{quoted : { | |
key: { | |
fromMe: false, | |
participant: "[email protected]", | |
remoteJid: "status@broadcast" | |
}, //Vcard sender by favas | |
message: { | |
"imageMessage": { | |
"jpegThumbnail": buff.buffer, | |
"caption": "οΈοΈΙͺα΄α΄’-α΄α΄ Ν’Κα΄α΄ α΄α΄Κα΄" | |
} | |
} | |
}}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment