-
-
Save Nikhilsree1/decf864761b39b6b36b2cd0e683ac2b1 to your computer and use it in GitHub Desktop.
MADE WITH π
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 { System, isPrivate, getBuffer } = require("../lib/"); | |
const image = 'https://i.imgur.com/ira6YIa.png'; | |
const thumb = "https://i.imgur.com/ira6YIa.png"; | |
System({ | |
pattern: 'intro ?(.*)', | |
fromMe: true, | |
desc: 'Shows My Intro', | |
type: 'misc', | |
}, async (message, match) => { | |
const number = message.user.jid; | |
const logo = await getBuffer(image); | |
const thumbnail = await getBuffer(thumb); | |
const sourceUrl = 'https://wa.me/917909187006?text=_αΚα΄ΚΚα΄+α΄Ιͺα΄Κα΄+κ±Κα΄α΄α΄α΄+Κα΄α΄ +Κα΄α΄+α΄ Κα΄+π€_'; | |
const linkPreview = { | |
title: "β β΅βͺβπ΄π°πͺπ―πΌπβͺβπ·", | |
body: "β β΅βͺβπ΄π°πͺπ―πΌπβͺβπ· π", | |
thumbnail: logo, | |
mediaType: 1, | |
mediaUrl: sourceUrl, | |
sourceUrl: sourceUrl, | |
showAdAttribution: true, | |
renderLargerThumbnail: true | |
}; | |
message.quoted = { | |
key: { | |
fromMe: false, | |
participant: "[email protected]", | |
remoteJid: "status@broadcast" | |
}, | |
message: { | |
contactMessage: { | |
displayName: `${message.pushName}`, // Ensure this variable is defined and contains the expected value | |
vcard: `BEGIN:VCARD\nVERSION:3.0\nN:XL;${message.client.user.name},;;;\nFN:${message.client.user.name},\nitem1.TEL;waid=${number.split('@')[0]}:${number.split('@')[0]}\nitem1.X-ABLabel:Ponsel\nEND:VCARD`, | |
jpegThumbnail: thumbnail | |
} | |
} | |
}; | |
const text = `0ΫͺΫͺཻུꦽꦼ̷βΈβΉβ’βββββββββββββββ‘α | |
β *γ π π¬ ππ‘π§π₯π’ γ* | |
β *Name :* β β΅βͺβπ΄π°πͺπ―πΌπβͺβπ· | |
β *Place :* α΄ΚΙͺα΄ α΄Ι΄α΄ Κα΄α΄ | |
β *Gender :* α΄α΄Κα΄ | |
β *Age :* Ι΄α΄α΄ Κα΄α΄ α΄α΄Κα΄α΄ | |
β *Phone :* wa.me/917909187006 | |
β *IG ID :* α΄Κ_α΄ α΄α΄ ΙͺΚ_α΄α΄α΄©Ιͺα΄α΄Κ | |
β *Profle :* α΄ΚΚα΄Κ α΄ α΄α΄α΄©ΙͺΚα΄ | |
β *Github :* β β΅βͺβπ΄π°πͺπ―πΌπβͺβπ· | |
β°βββββκͺΆ ΫͺΫͺཻུꦽꦼ̷⸠β β β β κͺΆ ΫͺΫͺཻུꦽꦼ̷βΈ`; | |
await message.client.sendMessage(message.chat, { text: text, contextInfo: { externalAdReply: linkPreview } }, { quoted: message.quoted || '' }); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment