Hello All! I am pretty green to this stuff but I have a question that I haven't been able to figure out. I am trying to make an attack trigger:
^(.*) attacks (.*)
kill %2
The problem is that the period at the end of line is getting passed:
Joe attacks Foo.
attack Foo.
No such thing as Foo.
I can't figure out how to make it not read the "." at the end of line. Does anyone have any ideas?
Thanks!
Chris
^(.*) attacks (.*)
kill %2
The problem is that the period at the end of line is getting passed:
Joe attacks Foo.
attack Foo.
No such thing as Foo.
I can't figure out how to make it not read the "." at the end of line. Does anyone have any ideas?
Thanks!
Chris