Commands
There are two arrays of commands, commands
and status_commands
. You can find all commands in ./SCPToolsBot/configs/extra/commands.json
All commands that the bot can execute are defined in this global config. They can be changed to whatever the user likes, as long as the id's stay the same. This config also allows for the creation of entirely new commands.
{
"commands": [
{
"active": true,
"inherit": "",
"name": "",
"description": "",
"default_permissions": [],
"options": [
{
"type": "",
"name": "",
"description": "",
"isRequired": true,
"choices": [
{
"name": "",
"id": ""
}
]
}
],
"subcommands": [
{
"inherit": "",
"name": "",
"description": "",
"options": [
{
"inherit": "",
"name": "",
"description": "",
"options": [
{
"type": "",
"name": "",
"description": "",
"isRequired": true
}
]
}
]
}
]
}
]
}
Last updated