Rebuild config and readme

This commit is contained in:
Thomas Smyth 2020-09-09 18:38:08 +01:00
parent 822a17ac30
commit 9b6d890df8
2 changed files with 31 additions and 31 deletions

View File

@ -207,6 +207,25 @@ The `auto-tk-warn` plugin will automatically warn players in game to apologise f
</tbody>
</table>
### chat-commands
The `chat-command` plugin will automatically broadcast messages when a player types the corresponding command into any chat.
##### Options
<table>
<thead>
<tr>
<th>Option</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr><td>commands</td><td>Array of command configs</td><td>false</td><td>[{"command":"!squadjs","type":"warn","response":"This server is powered by SquadJS.","ignoreChats":[]}]</td><td>See the default value as an example of how to configure commands. Type can either be `warn` or `broadcast`</td></tr>
</tbody>
</table>
### discord-admin-broadcast
The `discord-admin-broadcast` plugin will send a copy of admin broadcasts made in game to a Discord channel.
@ -539,25 +558,6 @@ The `team-randomizer` plugin can be used to randomize teams. It's great for dest
</tbody>
</table>
### chat-commands
The `chat-command` plugin will automatically broadcast messages when a player types the corresponding command into any chat.
##### Options
<table>
<thead>
<tr>
<th>Option</th>
<th>Type</th>
<th>Required</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr><td>commands</td><td>Array of command configs</td><td>false</td><td>[{"command":"!squadjs","type":"warn","response":"This server is powered by SquadJS.","ignoreChats":[]}]</td><td>See the default value as an example of how to configure commands. Type can either be `warn` or `broadcast`</td></tr>
</tbody>
</table>
## Creating Your Own Plugins
To create your own plugin you need a basic knowledge of JavaScript.

View File

@ -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": []
}
]
}
]
}