QUOTE (Mado @ Mar 19 2009, 11:56 AM)

Ok so what I'm trying to do is colour certain lines of text so that I can see when my Targeted person eats something.
At the minute I use %1 eats a %1 and this is kind of sucky because iot shows when anyone eats a herb and not just my spicific target.
I had thought of putting in @target eats a %1 but doesnt work either.
Anyone can help?
First, that pattern that you have will match to "Jonathin eats a Jonathin".
Second, you should never use a variable in a trigger pattern. You also shouldn't use %1-%99 in the pattern either.
Do this:
#regex {(\w+) eats a (.*)\.$) {#cw (high,purple)}}
you'll still see everyone eating, but it'll actually work. <--learn RegEx, it's so much better than zScript anyway.