How to disable some game commands - dapucita/haxbotron GitHub Wiki
How to disable some game commands
You can disable certain commands by edit Game Commands section in the Web-based Management System.
Open Create new room page and find _disabledCommandList part in the Game Commands section.
"_disabledCommandList": [
"sampledisabledcommandname1"
,"sampledisabledcommandname2"
],
If you want to add disabled list, type the command name with double quote mark and insert comma.
For example, you can disable !afk, !stats and !statsreset commands like this:
"_disabledCommandList": [
"afk"
,"stats"
,"statsreset"
],