Ok, i have this problem. I want MUCl to match this line:
<af[HY] hp[388/1242]>You guildtalk 'test again'
The prompt may or may not appear, and is of various colors. The "guildtalk" part is light blue. The trigger is:
[A-Za-z]+ guildtalk(|s) \'(.*?)\'$
which works if the text is:
Poromenos guildtalks 'test'
in which case it colors the line. Now, my question is, why doesn't "You" match the [A-Za-z]+ rule if the prompt is right before it? can if be because there is no space to separate it?
<af[HY] hp[388/1242]>You guildtalk 'test again'
The prompt may or may not appear, and is of various colors. The "guildtalk" part is light blue. The trigger is:
[A-Za-z]+ guildtalk(|s) \'(.*?)\'$
which works if the text is:
Poromenos guildtalks 'test'
in which case it colors the line. Now, my question is, why doesn't "You" match the [A-Za-z]+ rule if the prompt is right before it? can if be because there is no space to separate it?