Skip to content

Instantly share code, notes, and snippets.

@I-NRL
Last active February 3, 2024 03:12
Show Gist options
  • Save I-NRL/66b81812f1b5e8374dd962362aad7dc7 to your computer and use it in GitHub Desktop.
Save I-NRL/66b81812f1b5e8374dd962362aad7dc7 to your computer and use it in GitHub Desktop.
const { inrl, getBuffer } = require('../lib/')
const image = 'https://i.imgur.com/xGPUXbk.jpeg' //MAIN IMAGE URL HERE
const logo = 'https://telegra.ph/file/b1a153ed50e122440e8bb.jpg'
inrl(
{
pattern: 'intro ?(.*)',
fromMe: false,
desc: 'Shows My Intro',
type: 'misc',
}, async (message) => {
const thumb = await getBuffer(image)
const thumbnail = await getBuffer(logo)
const viz = {}
// ADDED /* TO REMOVE LINK PREVIEW TYPE
viz.linkPreview = {
renderLargerThumbnail: true,
showAdAttribution: true,
title: "ɪͥᴛͭsᷤ ᴍͫᴇͤ ⏤͟͞ꪶ 𝑉𝑖𝑧 𝑍𝑒𝑟 ꫂ⛧͢",
body: "ᴄʟɪᴄᴋ ʜᴇʀᴇ ᴛᴏ ᴳᵉᵗ🫂 !",
mediaType: 1,
thumbnail: thumb,
sourceUrl: "http://wa.me/919526433047?text=_៚ʜᴇʟʟᴏ+ᴠɪᴢ+ᴢᴇʀ+🪄_"
}
return await message.forwardMessage(message.from,`0ཻུ۪۪ꦽꦼ̷⸙‹•══════════════♡᭄
│ *「 𝗠𝗬 𝗜𝗡𝗧𝗥𝗢 」*
│ *Name :* ꪶᵥᵢz-Zₑᵣꫂ
│ *Place :* ᵏᵉʳᵃˡᵃ
│ *Gender :* Male
│ *Age :* Undefined
│ *Hobby :* 刀のイんノ刀ム 🙂
│ *Phone :* ⁺⁹¹⁹⁵²⁶⁴³³⁰⁴⁷
│ *IG ID :* viz_zer
│ *Status :* ᥴꪮꪑꪑ꠸ꪻꫀᦔ 💞
╰═════ꪶ ཻུ۪۪ꦽꦼ̷⸙ ━ ━ ━ ━ ꪶ ཻུ۪۪ꦽꦼ̷⸙`, viz)
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment