Regex feature not working well
this is example from regex builder and ingame. result are not same.
This is section from config there i use it '6': ParsePlayer: sender Keyword: (?i) F$ ParseKeyword: false Cooldown: 0 Hover: Enable: false Text: [] Click: Enable: false Action: '' Value: '' Replace: Enable: true ReplaceText: '&6&lF'
What happens if you don't add the $? Does it replace anything?
nothing changed. same results without $
Keyword: (?i) *F
This worked for me matching the letter 'F' with any amount of space in front.
However, this isn't really a good idea as InteractiveChat couldn't distinguish which part of the messages is the prefix/player name etc, and which part is the actual player chat message, so you might end up matching a lot of other 'F's you don't want to.
Due to the way IC currently matches regex expressions, anchors such as ^ or $ might not work as the user expects. It's a limitation atm. Hopefully in the future as I slowly improve the system, this limitation could be solved.