diff --git a/README.md b/README.md index 8eecb2c..73b6e5f 100644 --- a/README.md +++ b/README.md @@ -207,6 +207,25 @@ The `auto-tk-warn` plugin will automatically warn players in game to apologise f +### chat-commands +The `chat-command` plugin will automatically broadcast messages when a player types the corresponding command into any chat. + +##### Options + + + + + + + + + + + + + +
OptionTypeRequiredDefaultDescription
commandsArray of command configsfalse[{"command":"!squadjs","type":"warn","response":"This server is powered by SquadJS.","ignoreChats":[]}]See the default value as an example of how to configure commands. Type can either be `warn` or `broadcast`
+ ### discord-admin-broadcast The `discord-admin-broadcast` plugin will send a copy of admin broadcasts made in game to a Discord channel. @@ -538,25 +557,6 @@ The `team-randomizer` plugin can be used to randomize teams. It's great for dest commandStringfalse!randomizeThe command used to randomize the teams. - -### chat-commands -The `chat-command` plugin will automatically broadcast messages when a player types the corresponding command into any chat. - -##### Options - - - - - - - - - - - - - -
OptionTypeRequiredDefaultDescription
commandsArray of command configsfalse[{"command":"!squadjs","type":"warn","response":"This server is powered by SquadJS.","ignoreChats":[]}]See the default value as an example of how to configure commands. Type can either be `warn` or `broadcast`
## Creating Your Own Plugins To create your own plugin you need a basic knowledge of JavaScript. diff --git a/config.json b/config.json index 48ea68d..6a02afd 100644 --- a/config.json +++ b/config.json @@ -66,6 +66,18 @@ "enabled": true, "message": "Please apologise for ALL TKs in ALL chat!" }, + { + "plugin": "chat-commands", + "enabled": false, + "commands": [ + { + "command": "!squadjs", + "type": "warn", + "response": "This server is powered by SquadJS.", + "ignoreChats": [] + } + ] + }, { "plugin": "discord-admin-broadcast", "enabled": true, @@ -174,18 +186,6 @@ "plugin": "team-randomizer", "enabled": true, "command": "!randomize" - }, - { - "plugin": "chat-commands", - "enabled": false, - "commands": [ - { - "command": "!squadjs", - "type": "warn", - "response": "This server is powered by SquadJS.", - "ignoreChats": [] - } - ] } ] } \ No newline at end of file