Detoxify your chat on your client or your server!
I have opened a support discord, join now! https://discord.gg/uHm8EbfCFr
Detoxify is a lightweight yet powerful AI chat moderation tool that classifies messages into multiple categories, allowing you to finely tune what gets caught by the filter. Despite its performance, it uses less than 150MB of RAM, making it extremely efficient for both server and client use.
Detoxify uses the detoxify AI model to classify chat messages. Each message is analyzed and assigned scores for categories such as:
These scores allow you to configure thresholds and customize exactly which messages are filtered.
Download the correct server version of Detoxify.
Place the .jar file in your plugins or mods folder.
Start your server.
The configuration will be located in:
config/Detoxifyplugins/Detoxify.jar file in your mods folder..minecraft/config/DetoxifyThis is only on paper and spigot, on fabric and neoforge you need to be op
This configuration works for both client and server. It allows fine-tuning of message thresholds and debug options:
####################################
# #
# Detoxify Configuration #
# #
####################################
# Whether or not there should be debug message
debug=false
############################
# Value Settings #
############################
toxicity=0.9
severe-toxicity=0.5
obscene=0.25
threat=-1.0
insult=-1.0
identity-attack=-1.0
############################
# Message Settings #
############################
player=§cYour message was removed for violating chat rules.
staff=§c%s's message has been removed [%s]
console=§c%s's message has been removed [%s]
Note: Only available for Spigot and Paper platforms
Detoxify integrates with Skript for custom chat filtering. It provides a single expression that returns true or false depending on whether a message is considered toxic:
is [the] %string% toxic
detoxify %string%
on chat:
if detoxify message is true:
cancel event
send "&cThat message was blocked for toxicity!" to player
on chat:
if is the message toxic is true:
cancel event
send "&cThat message was blocked for toxicity!" to player