πΈ
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: "joke ?(.*)", | |
| fromMe: true, | |
| desc: "get a random joke", | |
| type: "all" | |
| }, | |
| async (message) => { | |
| const response = await fetch( |
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
| // Created by Corex with π | |
| // github.com/Corex24 | |
| // t.me/corex2410 | |
| const { bot } = require('../lib/') | |
| const fetch = (...args) => |
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
| // MR. De la Comunidad para la Comunidad. Prohibida su Venta. | |
| // El Software se proporciona bajo los tΓ©rminos de la Licencia MIT, excepto que usted no puede: | |
| // 1. Vender, revender o arrendar el Software. | |
| // 2. Cobrar a otros por el acceso, la distribuciΓ³n o cualquier otro uso comercial del Software. | |
| // 3. Usar el Software como parte de un producto comercial o una oferta de servicio. | |
| // v19 Limite Playlist en MP3. Change curl t wget | |
| const fs = require('fs').promises; | |
| const path = require('path'); | |
| const os = require('os'); |
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
| //Create by Corex with π | |
| //github.com/Corex24 | |
| //t.me/corex2410 | |
| const { bot } = require('../lib/') | |
| const fetch = (...args) => import('node-fetch').then(({ default: fetch }) => fetch(...args)) |
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
| // dla.js is a complement to LevanterBot: https://github.com/lyfe00011/levanter | |
| // Copyright (C) 2025 Weskerty | |
| // | |
| // Este programa se distribuye bajo los tΓ©rminos de la Licencia PΓΊblica General Affero de GNU (AGPLv3). | |
| // Usted puede usarlo, modificarlo y redistribuirlo bajo esa licencia. | |
| // Este software se proporciona SIN GARANTΓA alguna. | |
| // Licencia completa: https://www.gnu.org/licenses/agpl-3.0.html | |
| const fs = require('fs').promises; |