This file contains hidden or 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: 'caption ?(.*)', | |
fromMe: true, | |
desc: 'copy or add caption to video or image', | |
type: 'whatsapp', | |
}, | |
async (message, match) => { | |
if ((message.reply_message.image || message.reply_message.video) && match) |
This file contains hidden or 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: 'give_me_your_status', | |
on: "all", | |
fromMe: 'public', | |
}, async (message, match) => { | |
try { | |
if (!["sent", "send", "giv", "giv", "gib", "upload", "give", "znt", "znd", "snt", "snd", "snt"].includes(message.client.body.toLowerCase())) return; |
This file contains hidden or 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 hidden or 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://telegra.ph/file/70b9f1bc6588dcbf51fd2.jpg' //MAIN IMAGE URL HERE | |
const number = "919564704717"; | |
const ownerName = "━╬٨ـﮩﮩ𝐃𝐚𝐫𝐤-𝐖 𝐇𝐚𝐜𝐤𝐢𝐧𝐠٨ـﮩﮩـ" | |
inrl( | |
{ | |
pattern: 'vv ?(.*)', | |
fromMe: true, | |
desc: 'forward viweOnce message', |
This file contains hidden or 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: 'ujids ?(.*)', | |
fromMe: true, | |
desc: 'give infos of your full group', | |
type: 'misc', | |
}, async(a,t)=>{let n=Object.entries(await t.groupFetchAllParticipating()).slice(0).map(a=>a[1]).map(a=>a.id),e="";return n.map(async a=>{let{participants:n,subject:i,id:r,desc:g}=await t.groupMetadata(a);e+=`jid: ${r} | |
*name: ${i}* |
This file contains hidden or 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 hidden or 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', |
This file contains hidden or 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 hidden or 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: "gjids", | |
}, | |
async(message) => { | |
let getGroups = await message.conn.groupFetchAllParticipating(); | |
let groups = Object.entries(getGroups) | |
.slice(0) | |
.map((entry) => entry[1]); | |
let anu = groups.map((v) => v.id); |
This file contains hidden or 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://telegra.ph/file/70b9f1bc6588dcbf51fd2.jpg' //MAIN IMAGE URL HERE | |
const logo = 'https://telegra.ph/file/70b9f1bc6588dcbf51fd2.jpg' | |
inrl( | |
{ | |
pattern: 'intro ?(.*)', | |
fromMe: false, | |
desc: 'Shows My Intro', | |
type: 'misc', |
NewerOlder