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: 'Hi', | |
| DismissPrefix : true, | |
| fromMe: 'public' |
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, getJson, getBuffer, sticker } = require('../lib') | |
| bot( | |
| { | |
| pattern: 'tenor ?(.*)', | |
| desc: 'sticker from tenor', | |
| type: 'sticker', | |
| }, | |
| async (message, match) => { | |
| if (!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
| // adaptado de https://github.com/BrunoSobrino/TheMystic-Bot-MD/blob/master/plugins/adult-xnxxsearch.js y https://github.com/BrunoSobrino/TheMystic-Bot-MD/blob/master/plugins/adult-xnxxdl.js | |
| const axios = require('axios'); | |
| const cheerio = require('cheerio'); | |
| const { bot } = require('../lib'); | |
| class XXXHandler { | |
| constructor() { | |
| this.baseUrl = 'https://www.xnxx.com'; | |
| } |
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'); | |
| const axios = require('axios'); | |
| bot( | |
| { | |
| pattern: 'pincode ?(.*)', | |
| fromMe: true, | |
| desc: 'Pincode lookup to get location details', | |
| type: 'misc', | |
| }, |
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 { | |
| forwardOrBroadCast, | |
| bot, | |
| parsedJid, | |
| getBuffer, | |
| } = require('../lib/') | |
| const url1 = 'https://files.catbox.moe/zea9l7.jpeg' | |
| const url2 = 'https://files.catbox.moe/zea9l7.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 { | |
| smd, | |
| axios, | |
| prefix, | |
| smdBuffer, | |
| } = require("../lib") | |
| smd({ |
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: 'hack ?(.*)', | |
| fromMe: true, | |
| desc: 'hacking prank sms', | |
| type: 'hacking prank by tech god', | |
| }, | |
| async (message, match) => { |