Skip to content

Instantly share code, notes, and snippets.

View weskerty's full-sized avatar
🤔
Nihilizando Cosas

laWiskaPY weskerty

🤔
Nihilizando Cosas
View GitHub Profile
const fs = require('fs').promises;
const path = require('path');
const { promisify } = require('util');
const { exec: execCallback } = require('child_process');
const { bot } = require('../lib');
const exec = promisify(execCallback);
const utils = {
delay: (ms) => new Promise(resolve => setTimeout(resolve, ms)),
@weskerty
weskerty / YoBot.js
Last active January 2, 2026 23:21
MultiAccounts on Same Server LyFeLevanter Bot
const fs = require('fs').promises;
const path = require('path');
const { bot, sleep } = require('../lib');
const { restartInstance } = require('../lib/pm2');
const T1 = "Converting, Restarting Bot, wait a moment...";
const T2 = "Session Manager";
const T3 = "Add new session:";
@weskerty
weskerty / dla.js
Last active January 1, 2026 22:40
Download Everything, YT-DLP and CURL - DownLoadAll. Need lyfe00011 Levanter Bot
// 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
// https://github.com/sevsec/vt-scan/blob/master/vt-scan.sh
const fs = require('fs').promises;
const path = require('path');
const axios = require('axios');
const crypto = require('crypto');
const FormData = require('form-data');
const { bot, isAdmin } = require('../lib');
// Idioma Dinamico.
@weskerty
weskerty / groqGR.js
Last active October 19, 2025 13:30
// 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
@weskerty
weskerty / dado.js
Last active October 19, 2025 09:27
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',
@weskerty
weskerty / readmore.js
Last active September 11, 2025 15:41
// 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',
@weskerty
weskerty / Cuevana.js
Last active August 26, 2025 13:27
Descarga Peliculas en Español
const axios = require('axios');
const cheerio = require('cheerio');
const { chromium } = require('playwright');
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();
@weskerty
weskerty / Wikipedia.js
Last active August 24, 2025 20:40 — forked from OfficialGodbless/Wikipedia.js
Wikipedia Fork Plugin pero en Español (cambiar https://es.wikipedia.org)
const { bot } = require("../lib/");
const axios = require("axios");
bot(
{
pattern: "wiki ?(.*)",
desc: "Search Wikipedia for a topic",
type: "info",
},
async (message, match) => {
@weskerty
weskerty / DTG.js
Last active July 22, 2025 14:05
Telegram Sticker Downloader
// dtg.js is a complement to LevanterBot: https://github.com/lyfe00011/levanter
// github.com/weskerty/TGStickerDownloader
// 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;