Skip to content

Chat Filters

Daniel Chýlek edited this page Mar 17, 2018 · 2 revisions

Chat filter is a comma-separated list of words that are matched against words in each message. A word is a case-insensitive sequence of latin letters and numbers. Use * as a wildcard.

Note that matching messages will only be hidden in theatre mode.

  • abc, def
    • Matches any message which contains the individual word abc or def
    • Will match hello abc!, Abc, DEF
    • Will not match abcdef or abc123
  • abc*
    • Matches any message which contains a word starting with abc
    • Will match abc, abcde, abcabc, etc.
    • Will not match zabc
  • *bc*
    • Matches any message which contains a word with bc in it
    • Will match bc, abc, bcd, abcd, etc.
  • two words
    • Matches any message which contains the sequence of words two words
    • Will match two words, two ​ words, Two ​ ​ Words
    • Will not match twowords, words two
  • !!!
    • Matches any message which contains !!!
    • Since special characters are not part of a word, this will match !!! surrounded by other special characters, such as !!!! or ??!!!??
Clone this wiki locally