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
| // V5 uso levanter | |
| const { bot } = require('../lib'); | |
| const os = require('os'); | |
| const { exec } = require('child_process'); | |
| const fs = require('fs').promises; | |
| const util = require('util'); | |
| const path = require('path'); | |
| const execAsync = util.promisify(exec); | |
| class FastFetchDownloader { |
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 | |
| // Calidad de Descarga Predeterminada: 2k e Inferior. | |
| // Nuevas Variables. DLA_VIDEO DLA_AUDIO DLA_YTCMD DLA_EXTDOWN |
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 | |
| // 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 | |
| // CAMBIO DE GR A GQ por conflicto con palabras en Español |
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 fs = require('fs').promises; | |
| const path = require('path'); | |
| const { chromium } = require('playwright'); | |
| const { bot, isUrl } = require('../lib'); | |
| require('dotenv').config(); | |
| class WebDownloader { | |
| constructor() { | |
| this.config = { | |
| tempDir: process.env.TEMP_DOWNLOAD_DIR || path.join(process.cwd(), 'tmp'), |
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/buscador-tiktoksearch.js Aunque sin la Funcion "Carrusel" | |
| const { bot, logger } = require('../lib'); | |
| const axios = require('axios'); | |
| class TikTokSearchHandler { | |
| constructor() { | |
| this.apiURL = 'https://tikwm.com/api/feed/search'; | |
| this.headers = { | |
| "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", |
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 fs = require('fs').promises; | |
| const path = require('path'); | |
| const { bot } = require('../lib'); | |
| const config = { | |
| media: { | |
| directory: process.env.AMULEDOWNLOADS || path.join(process.cwd(), 'tmp'), | |
| maxFilesToSend: 20, | |
| maxFileSize: Number(process.env.MAX_UPLOAD || 1500) * 1048576 // 1.5 GB | |
| }, |
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/herramientas-readmore.js | |
| const { bot } = require('../lib'); | |
| const more = String.fromCharCode(8206); | |
| const readMore = more.repeat(4001); | |
| bot( | |
| { | |
| pattern: 'readmore ?(.*)', | |
| desc: 'Add Readmore Hi|Readmore', |
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 fs = require('fs').promises; | |
| const path = require('path'); | |
| const os = require('os'); | |
| const { promisify } = require('util'); | |
| const { exec: execCallback } = require('child_process'); | |
| const { bot } = require('../lib'); | |
| require('dotenv').config(); | |
| const exec = promisify(execCallback); |
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'); | |
| class DiceUtility { | |
| constructor() { | |
| this.diceUrls = [ | |
| 'https://tinyurl.com/gdd01', | |
| 'https://tinyurl.com/gdd02', | |
| 'https://tinyurl.com/gdd003', | |
| 'https://tinyurl.com/gdd004', | |
| 'https://tinyurl.com/gdd05', |
OlderNewer