|
dvgalius2002@yahoo.com Beginner
Joined: 01 Aug 2006 Posts: 21
|
Posted: Thu Mar 22, 2007 5:13 pm
how do you caputure multiple lines for triggers |
like I say I have this output
The Sandtrooper is dead! R.I.P.
You receive your share of experience -- 43672 points.
And I want to make a trigger that captures both of these lines and stores the name of the mob and the exp gained.
Any help is appreciated. |
|
|
|
nexela Wizard
Joined: 15 Jan 2002 Posts: 1644 Location: USA
|
Posted: Thu Mar 22, 2007 5:25 pm |
#TRIGGER "expcapture" {(*) is dead! R.I.P.} {}
#COND {^You receive your share of experience -- (%d) points.} {#ADDKEY ExpCap {%t1} {%1}} {within|param=1}
And to see the values
#SHOWDB @ExpCap |
|
|
|
|
|