first commit

This commit is contained in:
synt-xerror
2026-04-14 21:15:05 -03:00
commit eecef0be88
44 changed files with 1372 additions and 0 deletions

17
many/index.js Normal file
View File

@@ -0,0 +1,17 @@
import { CMD_PREFIX } from "../../config.js";
import { createPluginI18n } from "../../utils/pluginI18n.js";
const { t } = createPluginI18n(import.meta.url);
export default async function ({ msg, api }) {
if (!msg.is(CMD_PREFIX + "many")) return;
await api.send(
`${t("title")}\n\n` +
`🎬 \`${CMD_PREFIX}video <link>\`${t("video")}\n` +
`🎵 \`${CMD_PREFIX}audio <link>\`${t("audio")}\n` +
`🖼️ \`${CMD_PREFIX}figurinha\`${t("sticker")}\n` +
`🎮 \`${CMD_PREFIX}adivinhação começar|parar\`${t("guess")}\n` +
`🎮 \`${CMD_PREFIX}forca começar|parar\`${t("hangman")}\n`
);
}

8
many/locale/en.json Normal file
View File

@@ -0,0 +1,8 @@
{
"title": "🤖 ManyBot — Available Commands",
"video": "Download video from URL",
"audio": "Download audio (mp3) from URL",
"sticker": "Convert image/video to sticker",
"guess": "Guessing game (number 1-100)",
"hangman": "Hangman game"
}

8
many/locale/es.json Normal file
View File

@@ -0,0 +1,8 @@
{
"title": "🤖 ManyBot — Comandos disponibles",
"video": "Descarga video de una URL",
"audio": "Descarga audio (mp3) de una URL",
"sticker": "Convierte imagen/video en sticker",
"guess": "Juego de adivinanza (número 1-100)",
"hangman": "Juego del ahorcado"
}

8
many/locale/pt.json Normal file
View File

@@ -0,0 +1,8 @@
{
"title": "🤖 ManyBot — Comandos disponíveis",
"video": "Baixa vídeo de uma URL",
"audio": "Baixa áudio (mp3) de uma URL",
"sticker": "Converte imagem/vídeo em figurinha",
"guess": "Jogo de adivinhação (número 1-100)",
"hangman": "Jogo da forca"
}

7
many/manyplug.json Normal file
View File

@@ -0,0 +1,7 @@
{
"name": "many",
"version": "1.0.0",
"category": "utility",
"service": false,
"dependencies": {}
}