Basicly what im tryin to do is capture right and left leg attacks seperately. The trigger I have for the left leg works fine. But not for the right. This is what im capturing.
Taking a step back, you lunge forward with a hooking cut across Helios's right
leg.
Taking a step back, you lunge forward with a hooking cut across Helios's left
leg.
And this is what I send
<triggers>
<trigger
enabled="y"
expand_variables="y"
ignore_case="y"
keep_evaluating="y"
match="*Taking a step back, you lunge forward with a hooking cut across *'s right*"
send_to="12"
sequence="100"
>
<send>setvariable "rleg", CInt(getvariable("rleg"))+1</send>
</trigger>
</triggers>
<triggers>
<trigger
enabled="y"
expand_variables="y"
ignore_case="y"
keep_evaluating="y"
match="*Taking a step back, you lunge forward with a hooking cut across * left *"
send_to="12"
sequence="100"
>
<send>setvariable "lleg", CInt(getvariable("lleg"))+1</send>
</trigger>
</triggers>
Any reasons why one would work and not the other would be GREAT. Or any sulitons. :)
EDIT: Also I tried it with out the 's after the wildcard too. No luck there either.
EDIT: ALSO also I toyed with the variables a bit. set rleg to 10 and lleg to 8 to see if the script im using this for works right when rleg is > and when i went back to look at the value of rleg it was set to one again.
Taking a step back, you lunge forward with a hooking cut across Helios's right
leg.
Taking a step back, you lunge forward with a hooking cut across Helios's left
leg.
And this is what I send
<triggers>
<trigger
enabled="y"
expand_variables="y"
ignore_case="y"
keep_evaluating="y"
match="*Taking a step back, you lunge forward with a hooking cut across *'s right*"
send_to="12"
sequence="100"
>
<send>setvariable "rleg", CInt(getvariable("rleg"))+1</send>
</trigger>
</triggers>
<triggers>
<trigger
enabled="y"
expand_variables="y"
ignore_case="y"
keep_evaluating="y"
match="*Taking a step back, you lunge forward with a hooking cut across * left *"
send_to="12"
sequence="100"
>
<send>setvariable "lleg", CInt(getvariable("lleg"))+1</send>
</trigger>
</triggers>
Any reasons why one would work and not the other would be GREAT. Or any sulitons. :)
EDIT: Also I tried it with out the 's after the wildcard too. No luck there either.
EDIT: ALSO also I toyed with the variables a bit. set rleg to 10 and lleg to 8 to see if the script im using this for works right when rleg is > and when i went back to look at the value of rleg it was set to one again.