Ive got a series of lines that look like this:charm person 72% create food 81% create water 72%
theyve got the name of the skill, then some space, then the percentage of the skill, My regExp only seems to match on the first one of the line (There are 9 lines, it only counts up 9 matches each time the list is encountered)
My Reg Exp Looks like this:([a-z ]{2,})[ ]+(\d{1,3})\%
the trigger is setup to ignore case, Regexp, Keep Evaluating, and repeat on the same line.
It also colors the line (the whole line), but is set to match any on any, so I dont think that would stop it.
Now, for a while, a workabout I had was to simply put three of the above Regexps's in a trigger, with a in between, but there arent always three on a line, so that makes my script messy, and three times as long (trigger/script for one, two, and three on a line) for this portion.
What also puzzles me is the fact that it colors the whole line, instead of just what the Regexp matches on.
Im using 3.34, so it has nothing to do with the new changes in 3.35 |