-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
abcordef - Will match
hello abc!,Abc,DEF - Will not match
abcdeforabc123
- Matches any message which contains the individual word
-
abc*- Matches any message which contains a word starting with
abc - Will match
abc,abcde,abcabc, etc. - Will not match
zabc
- Matches any message which contains a word starting with
-
*bc*- Matches any message which contains a word with
bcin it - Will match
bc,abc,bcd,abcd, etc.
- Matches any message which contains a word with
-
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 the sequence of words
-
!!!- 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??!!!??
- Matches any message which contains