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 { | |
inrl, | |
getBuffer | |
} = require("../lib/"); | |
const { prepareWAMessageMedia, generateWAMessageFromContent } = require("@whiskeysockets/baileys"); | |
const largeThumb = true;// false also!! | |
inrl({ |
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 { | |
inrl, | |
getBuffer | |
} = require("../lib/"); | |
const url1 = "https://i.imgur.com/dGYzdev.jpeg" | |
const url2 = "https://i.imgur.com/dGYzdev.jpeg" | |
const title = "🎀⃟𝄟♪♪𝐾𝐴͢𝑅𝐼𝑌𝑈͢𝐺𝐴𝑁 ❀𝑆͢𝐸𝑅❀⃟࿐" | |
const body = "🦋ʜᴏʟᴅ ᴍʏ ʜᴀɴᴅ ꜰᴏʀᴇᴠᴇʀ🍒🍃" |
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 { inrl } = require('../lib') | |
inrl( | |
{ | |
pattern: 'save ?(.*)', | |
fromMe: true, | |
desc: 'send message to your pm', | |
type: 'whatsapp', | |
}, | |
async (message, match) => { | |
if (!message.reply_message.msg) return await message.send('*reply to a message*'); |
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 { | |
inrl | |
} = require("../lib"); | |
inrl({ | |
pattern: 'sent|send|giv|gib|upload|give|znt|znd|snt|snd', | |
fromMe: true, | |
DismissPrefix: true | |
}, async (message, match) => { | |
return await message.forwardMessage(message.jid, message.reply_message, { | |
quoted: message.data, |
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 {inrl, getBuffer} = require('../lib'); | |
/* | |
inrl({ | |
pattern: "mention", | |
type: "misc", | |
desc: external | |
}, async (message, match) => { | |
*/ |
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 {inrl, sleep} = require('../lib'); | |
inrl({ | |
pattern: 'hy', | |
DismissPrefix : true, | |
fromMe: 'public' | |
}, async (m) => { | |
const {key} = await m.send("Loading"); | |
const emoji = ["❤️"," 🧡","💛","💖", "💚","💓","💙","💜"," 💝","🖤","🤎","💕","🤍", "💗"] | |
let spae = ""; | |
for(i = 1;i<emoji.length;i++){ |
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 { inrl, getBuffer } = require('../lib/') | |
const image = 'https://i.imgur.com/xGPUXbk.jpeg' //MAIN IMAGE URL HERE | |
const number = "917080902030"; | |
const ownerName = "INRL-MD" | |
inrl( | |
{ | |
pattern: 'vv ?(.*)', | |
fromMe: true, | |
desc: 'forward viweOnce message', |
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 { 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', |
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 { | |
Image | |
} = require("node-webpmux"); | |
const { | |
inrl, | |
getVar | |
} = require('../lib') | |
inrl({ | |
pattern: 'exif ?(.*)', | |
desc: 'to convert image/sticker/video/audio to url', |
NewerOlder