AdvancedChat

AdvancedChat

65.5k Downloads

Filter and tab management could be better

Madis0 opened this issue ยท 4 comments

commented

I understand that you seem to be within your config API limits, but still... The overview, creation and deletion of filters and tabs are quite confusing. Maybe you can do some kind of split-screen view?

commented

Yeah, I do agree that it isn't optimal. I hope to one day be able to create a better gui for filters and tabs, but currently I am just using Cloth Config. Tried writing my own for v1, but it did not go well. I'll look into some options in the future.

commented

Would also be great if there was a way to add multiple strings to a filter. For example I would like to get notified when my name appears in the chat. People write my name in many different ways and I would have to create a filter for each of those variations. With a filter-list I could simply add all those different Strings to one filter.

commented

This is currently possible with a bit of use of Regular Expressions. Lets say I wanted to detect different ways that people say "DarkKronicle". This would be the regex:

DarkKronicle|Darkk|Kron

You use | to separate different strings to find. I know this isn't the easiest, but maybe eventually I'll add a way to have a list.

P.S. If you want ignorecase with the example above add (?i). (?i)DarkKronicle|(?i)Darkk|(?i)Kron

commented

Redoing it all for V3