Commands
Configure which commands are enabled or disabled across all plugins
Last updated
Configure which commands are enabled or disabled across all plugins
The Commands configuration file (commands.json) allows you to enable or disable any command across all Athena Bot plugins. This gives you complete control over which features are available in your server.
Each command has a boolean value that determines whether it loads when the bot starts:
config: {
core: {
ping: true, // β
Command is enabled
debug: false, // β Command is disabled
}
}To disable a command:
Set the command to false in the configuration file
Save the file
Restart the bot - changes only apply after a full restart
When a command is disabled (false):
The command will not load on bot restart
It will not be available to anyone, including admins
It will not appear in the /help command
It behaves as if it doesn't exist
Important: Changes require a bot restart to take effect. Simply saving the configuration file is not enough.
Two commands cannot be disabled by default and require the Watermark Addon to disable:
The botinfo command displays information about Athena Bot (version, credits, uptime, etc.).
To disable this command:
Purchase the Watermark Addon
Use the /claim command in the Athena Support Discord
Set botinfo: false in this configuration
Restart the bot
Without the Watermark Addon, this command will remain active regardless of the configuration setting.
The devstatus command displays the current system status of Iynx Development's services.
To disable this command:
Purchase the Watermark Addon
Use the /claim command in the Athena Support Discord
Set devstatus: false in this configuration
Restart the bot
Without the Watermark Addon, this command will remain active regardless of the configuration setting.
Last updated