customcmds.json(4)
- LynxBot manual
DESCRIPTION
customcmds.json is the file in which LynxBot stores the user's custom bot commands.
Each individual custom command is an object within the array named commands.
SYNOPSIS
The format of each custom command object is as follows:
{
"cmd" : "command",
"cooldown" : 30,
"response" : "response"
}
- cmd
The keyword that activates the command.
- cooldown
The cooldown, in seconds, of the command.
- response
The string to post when the command is used.