Exact Phrase Blacklist

Hey there.

So on the blacklist, is it possible to do an exact match and not wildcard?

I would like to blacklist !play but not any other message if it just contains !play. Reason being marbles on stream we have alot of !play spam but sometimes people put messages alongside their !play message and I miss it by just putting !play in the blacklist right now.

Thank you in advance.

Hey @Vibblez!

This can be fixed by using a regular expression in the blacklist, replace !play from your list with:
~/^!play(?!.)/

It should only match messages that strictly only contain !play, as highlighted below:

+ User: !play
- User: hello world !play
- User: hello !play world
- User: !play hello world

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.