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 { | |
forwardOrBroadCast, bot, | |
parsedJid, | |
getBuffer, | |
} = require('../lib/') |
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 { | |
forwardOrBroadCast, | |
bot, | |
parsedJid, | |
getBuffer, | |
} = require('../lib/') | |
const url1 = 'https://i.imgur.com/V6JMEI4.jpeg' | |
const url2 = 'https://i.imgur.com/V6JMEI4.jpeg' | |
bot( |
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 { | |
forwardOrBroadCast, | |
bot, | |
parsedJid, | |
getBuffer, | |
} = require('../lib/') | |
const url1 = 'https://i.imgur.com/kwOUEfb.jpeg' | |
const url2 = 'https://i.imgur.com/kwOUEfb.jpeg' | |
bot( |
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 { bot, getBuffer, sticker } = require('../lib/') | |
bot( {pattern: 'tom ?(.*)', fromMe: true, desc: 'random tom & jerry sticker sending plugin', type: 'misc' },async (message, match) => {let image = ["https://i.imgur.com/abU7VbZ.jpeg","https://i.imgur.com/f9SlC0w.jpeg","https://i.imgur.com/TCW7nYQ.jpeg","https://i.imgur.com/TIP5v25.jpeg","https://i.imgur.com/TiHAjIC.jpeg","https://i.imgur.com/rrim0Eo.jpeg","https://i.imgur.com/UofYrOO.jpeg","https://i.imgur.com/mBUa18v.jpeg","https://i.imgur.com/MR9d5xI.jpeg","https://i.imgur.com/WroChv0.jpeg","https://i.imgur.com/v7EL9VU.jpeg","https://i.imgur.com/Hnjaxbg.jpeg","https://i.imgur.com/JFdw1DA.jpeg","https://i.imgur.com/7ojZGon.jpeg","https://i.imgur.com/g0EI1wZ.jpeg","https://i.imgur.com/8pea3sK.jpeg","https://i.imgur.com/gWN5jXa.jpeg","https://i.imgur.com/vCLbQ3B.jpeg","https://i.imgur.com/rGWgA7u.jpeg","https://i.imgur.com/f5j67hg.jpeg","https://i.imgur.com/X9XW86W.jpeg","https://i.imgur.com/kb7Xhvn.jpeg","https://i.imgur.com/yBciVdj.jpeg","https://i.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 { bot, textMaker } = require('../lib') | |
bot( | |
{ pattern: 'birthday ?(.*)', | |
fromMe: true, | |
desc: 'happy birthday', |
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 { bot, isUrl, getImgUrl } = require('../lib/') | |
bot( | |
{ | |
pattern: 'mdrive ?(.*)', | |
desc: 'Download from Google Drive link', | |
type: 'download', | |
}, | |
async (x, y) => { | |
y = y || x.reply_message.text; |