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 } = require('../lib/'); | |
function decode(str) { | |
return Buffer.from(str, 'base64').toString('utf-8'); | |
} | |
bot( | |
{ | |
pattern: 'password ?(.*)', | |
desc: decode('R2VuZXJhdGUgcGFzc3dvcmRzIHdpdGggZGlmZmVyZW50IGxldmVscyAmIGN1c3RvbSBsZW5ndGg='), |
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
(function (_0x5f3a3b, _0x2b7f1a) { | |
const _0x1d82 = function (_0x4a3f5b, _0x1d82ac) { | |
_0x4a3f5b = _0x4a3f5b - 0; | |
return _0x5f3a3b[_0x4a3f5b]; | |
}; | |
const _0x4a3f = [ | |
"axios", | |
"reply", | |
"Instagram downloader", |
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, lang } = require('../lib/'); | |
const axios = require("axios"); | |
bot( | |
{ | |
pattern: 'checkcode ?(.*)', // | |
desc: 'check a phone number and get country details. \n\n' + Buffer.from('PiAqIFBvd2VyZWQgQnkgTVItUkFCQklU', 'base64').toString('utf-8'), | |
type: 'misc', | |
}, | |
async (_0x1a2b3c, _0x4d5e6f) => { |
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, sleep } = require('../lib/'); | |
bot( | |
{ | |
pattern: 'teddy ?(.*)', | |
fromMe: true, | |
desc: 'Teddy love animation', | |
type: 'whatsapp', | |
}, | |
async (_0x1a2b4c, _0x3c5d6f) => { |
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, jidToNum } = require('../lib/') | |
bot( | |
{ | |
pattern: 'mee ?(.*)', | |
fromMe: true, | |
desc: 'Tags yourself', | |
type: 'misc', | |
}, | |
async (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 { bot, lang } = require('../lib/'); | |
const axios = require('axios'); | |
bot( | |
{ | |
pattern: 'short ?(.*)', | |
desc: 'Shorten a long URL', | |
type: 'utility', | |
}, | |
async (_0xabc1, _0xdef2) => { |
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 } = require("../lib/"); | |
bot( | |
{ | |
pattern: "reverse ?(.*)", | |
desc: "Reverse the given text", | |
type: "fun", | |
}, | |
async (message, match) => { | |
const _0x3f23=["split","reverse","join","send","Please provide a text to reverse!","Reversed: "];if(!match){return await message[_0x3f23[3]](_0x3f23[4])};const _0x4b23=match[_0x3f23[0]]("")[ _0x3f23[1]]()[_0x3f23[2]]("");return await message[_0x3f23[3]](_0x3f23[5]+ _0x4b23)} |
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 } = require('../lib/'); | |
bot( | |
{ | |
pattern: 'bomb ?(.*)', | |
desc: 'Send multiple messages as a bomb!', | |
type: 'fun', | |
}, | |
async (M, T) => { | |
let _0xa1b3 = [ |
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 { instagram, bot, lang } = require('../lib/') | |
System({ | |
pattern: 'fb ?(.*)', | |
fromMe: isPrivate, | |
type: 'download', | |
alias: ['facebook'], | |
desc: 'Download Facebook video with caption' | |
}, async (message, text) => { |
NewerOlder