BotMeriendo includes a small set of general utility commands for testing connectivity, greeting users, and exploring all available commands across every loaded cog.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.
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.
!hola
Greets the invoking user with a Discord mention.
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.
category attribute. Commands without an explicit category are grouped under Sin categoría.
Example embed output:
📋 Comandos del Bot MúsicaEach line in the embed follows the format!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
`!<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.