Hello,
I need some help with creating aliases for each individual letter of the alphabet. The reason behind this is because I am making a blacklist for Twitch chat but people keep finding ways to bypass the banned words.
For example, the word "test" is banned but they use "tést" instead. And there are thousands of combinations they can keep trying. I currently have 5000 banned combinations and it's getting a bit too much.
So what I want to do now is keep the script that I have now and apply the aliases.
Like this:
N = {'N', 'ⓝ', 'n', '𝖓', 'И', ... etc } but I have no idea how to do that.
This is the script I am using to blacklist words:
on $*:text:*bannedword*:#channel:{
msg $chan .ban $nick
}
So when someone types "bánnédword" the aliases will replace the "á" with "a" and "é" with "e" and then /ban the user.
I hope you understand what I am trying to explain. Sorry about the bad english, it's not my first language.
Thank you in advance,
Ry