diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-17 19:40:35 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-17 19:40:35 +0200 |
commit | 5b02f0bfdfe58931bd254abe7b11d6c4de341d6f (patch) | |
tree | 02cac65d3118964763f96579b41e7db2e0752aa6 | |
parent | 75d8f489ecf3b3433c3c0116da6f621574da3ebd (diff) | |
download | SkyHanni-REPO-5b02f0bfdfe58931bd254abe7b11d6c4de341d6f.tar.gz SkyHanni-REPO-5b02f0bfdfe58931bd254abe7b11d6c4de341d6f.tar.bz2 SkyHanni-REPO-5b02f0bfdfe58931bd254abe7b11d6c4de341d6f.zip |
added player chat filters
-rw-r--r-- | constants/PlayerChatFilter.json | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/constants/PlayerChatFilter.json b/constants/PlayerChatFilter.json new file mode 100644 index 0000000..0d5a0be --- /dev/null +++ b/constants/PlayerChatFilter.json @@ -0,0 +1,87 @@ +{ + "filters": [ + { + "description": "Player is advertising their lowballing", + "contains": [ + "lowballing", + "lowbal", + "lowwbal" + ], + "containsWord": [ + "low balling" + ] + }, + { + "description": "Player is looking for a lowballer", + "contains": [ + "lowballer" + ] + }, + { + "description": "Player wants to buy stuff", + "containsWord": [ + "buying", + "i buy" + ] + }, + { + "description": "Player wants to sell stuff", + "containsWord": [ + "sell", + "selling", + "sellomg", + "seling", + "my ah", + "my ahh", + "low price", + "bid on", + "to buy", + "my /ah", + "i buy", + "check out my auction", + "on /ah" + ] + }, + { + "description": "Player wants to advertise a minion shop", + "containsWord": [ + "minion shop" + ] + }, + { + "description": "Player wants to quit skyblock", + "containsWord": [ + "quitting skyblock" + ] + }, + { + "description": "Player wants to apply reforge stone", + "containsWord": [ + "applying reforges", + "mining 30 to apply", + "apply spiritual to" + ] + }, + { + "description": "Player wants to sell building island farms", + "containsWord": [ + "building your farms", + "building farms" + ] + }, + { + "description": "Player asks for free stuff", + "contains": [ + "at map" + ], + "containsWord": [ + "upgrade my", + "fund me", + "donate me", + "can someone give me", + "got scammed", + "dirt to hyp" + ] + } + ] +} |