-
-
Save itzmesuhail143/85454021a7866e1df4aa623342444198 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/MEHf4qh.jpeg'; | |
const thumb = "https://i.imgur.com/a9JJc24.jpeg"; | |
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/916374437144?text=_Hα΄yy%20κ±α΄Κα΄ΙͺΚπ«Άπ»π€_'; | |
const linkPreview = { | |
title: "βΝ’βββ―βΝ’πΊαͺ΅πΌΝ’π―π¨π°π³αͺ΅π πΊαͺ΅π¬πΉαβΝ’ ββββ³", | |
body: "κ±α΄Κα΄ΙͺΚ-xα΄Κ π", | |
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 :* κ±α΄Κα΄ΙͺΚ-xα΄Κ | |
β *Place :* α΄α΄Κα΄Κα΄ | |
β *Gender :* α΄α΄Κα΄ | |
β *Age :* 17 | |
β *Phone :* wa.me/916374437144 | |
β *IG ID :* https://www.instagram.com/__s_u_h_a_i_l__s_u_h_a_i_l__?igsh=MzNlNGNkZWQ4Mg== | |
β *Number :* 916374437144 | |
β *Github :* itzmesuhail143 | |
β°βββββκͺΆ ΫͺΫͺཻུꦽꦼ̷⸠β β β β κͺΆ ΫͺΫͺཻུꦽꦼ̷βΈ`; | |
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