LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Thu Apr 08, 2004 5:31 pm |
Your pattern needs to match all the characters, including spaces or tabs (white space).
%d doesn't match white space. Neither does %w.
Since %w doesn't match spaces, it won't match more than one word. * is necessary for two-word spell names.
White space can be matched by the %s, %p, %q, *, ? wildcards or the &nn fixed width pattern. I've used %s, *, and &nn in the pattern below.
#COND {Level:%s(%d) (*) Mana:%s(%d)%sLearned:%s(%d) ~%~((&3)~)}
In order to actually change any colors, you'll also need a value for the #CONDITION. This will only affect the first line for each level. |
|