-
Notifications
You must be signed in to change notification settings - Fork 25
Configuration for _wordfilter.json
Basic formatting for the config should look like this. Only note as before the , is important you only need the , when adding more words. Important thing to notice is the , shouldn't go on the last word. Failure to put the , where it belongs will cause the program to not run.
Make sure if you dont use this list then keep the example words in there as if it is left blank the server will not work. However you can change the words to what ever you want.
Last thing to note is this only deletes the words when the bots sends it to all servers it does not change what the player types in game.
The word replacement list will replace words or letters in chat. Note this is mostly for discord to ark as since ark rcon doesnt support unicode it will still show as a ? when coming from ark.
Example _WordFilter.json
{
"WordFilterList": [
"exampleword",
"examplewords"
],
"WordReplacementList": [
{
"OldWord": "ö",
"NewWord": "o"
},
{
"OldWord": "raptor",
"NewWord": "dragon"
}
]
}