Just for any curious readers wondering what all this magic code is, it's called a "regular expression", and there are like a bajillion tutorials on how to write them yourself on the Internet, if you are interested.
Here's
just one.
Quote:
Originally Posted by Chapelle
[You must be logged in to view images. Log in or Register.]
I have something similar where I have an overlay that pops up the hit point number when I am hit by damage:
{S} ([A-Za-z]) YOU for {N}
or something like that - may be missing an asterisk or something.
When I am healed that number also shows up, which makes sense, but I'm looking for how to exclude the number I am healed by from showing up, so I preserve just damage from showing up on the overlay.
|
I'm on Linux (so I don't have Gina), but when you want to
include something in a regular expression, you put parentheses around it (like you did with "([A-Za-z])"). When you want to
exclude it, you just add it the same way, but without parentheses.
So in theory to get rid of the healing number you just need to add it, but don't put parentheses around it. But I'm not sure how that "{S}" and "{N}" stuff works (that's Gina-specific). I think they might include invisible parentheses or something, and if that's the case you can't use "{N}" (but hopefully someone who knows Gina better can help more).