Banned Words

Banned Words Are Similar to AI Moderation But doesnt require AI and its 100% free to use, this Only detects the EXACT word, not similarities and everything is MANUAL

There are online word lists you can download that blocks swear words and etc.. but you can also do your own!

# EasyChat Banned Words Configuration

# This file contains words that will be automatically censored in chat
# Words will be replaced with the censored_char configured below

# Word filter settings
word_filter:
  # Whether the word filter is enabled
  enabled: true
  # Character used to censor banned words
  censored_char: '*'
  # Whether to bypass the filter for players with the permission easychat.bypass.wordfilter
  allow_bypass: true
  # Whether to log filter actions to console
  log_filtered_messages: true

# To add a word, just add it to the list below
# Case-insensitive matching is used by default
banned_words:
  - badword
  - swear
  - profanity
  - offensive

# Settings for word censoring
settings:
  # Whether to do exact word matching (true) or partial word matching (false)
  # Exact: Only censor when the entire word matches (e.g. "badword" would be censored but "badwordtest" would not)
  # Partial: Censor any occurrence of the word (e.g. both "badword" and "badwordtest" would have "badword" censored)
  exact_match: true
  
  # Whether the word filter is case sensitive
  case_sensitive: false

This is a simple way to censor unwanted words!

Last updated