Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Melendo/BotMeriendo/llms.txt

Use this file to discover all available pages before exploring further.

BotMeriendo includes a small set of general utility commands for testing connectivity, greeting users, and exploring all available commands across every loaded cog.
The default command prefix is !. You can change it by setting the TRGGKEY environment variable before starting the bot. All examples on this page use the default ! prefix.

Command Reference

!ping

A simple health check command. The bot replies with pong.
!ping
Use case: Confirm the bot is online, connected to Discord’s gateway, and actively processing commands. If there is no response, the bot may be offline or experiencing connectivity issues.

!hola

Greets the invoking user with a Discord mention.
!hola
Example output:
Hola @username!
The bot resolves ctx.author.mention so the reply always pings the user who sent the command, regardless of their display name.

!comandos

Displays all available commands grouped by category in a Discord embed message.
!comandos
The bot dynamically iterates over every registered command from all loaded cogs and groups them by their category attribute. Commands without an explicit category are grouped under Sin categoría. Example embed output:
📋 Comandos del Bot Música !play — Reproduce música de YouTube (acepta URL o búsqueda) !skip — Salta la canción actual !stop — Detiene la música y limpia la cola !pause — Pausa la música !resume — Reanuda la música !queue — Muestra la cola de reproducción !join — El bot se une a tu canal de voz !leave — El bot sale del canal de voz Basico !ping — pong? !hola — Saluda al usuario !comandos — Muestra todos los comandos disponibles
Each line in the embed follows the format `!<command>` — <help text>, using the configured prefix and the help string defined on each command.
BotMeriendo also registers Discord.py’s built-in !help command automatically. !comandos is the bot’s own custom embed-based alternative that groups commands by category for easier navigation.

Use !comandos to always see the up-to-date list of commands with their current prefix — especially useful after changing TRGGKEY or after the bot has been updated with new cogs.

Build docs developers (and LLMs) love