I want to make trigger that would count what kind of hits my character scores, these hits are lightly cut, cut and tear.
Ive managed to create that counter but i have some trouble with it, it prints new text to infor bar everytime my
character cuts it looks like this: http://koti.mbnet.fi/~casq/mushongelma.JPG
Here is my vbscript
And here are the damage messages taken from random battle.
You lightly cut Geofer causing brain cells to quiver.
You lightly cut Geofer causing a small wound.
You cut Geofer causing a bad acid wound.
As you can se i only need that "You lightly cut" or "You cut" part for the trigger.
Ive managed to create that counter but i have some trouble with it, it prints new text to infor bar everytime my
character cuts it looks like this: http://koti.mbnet.fi/~casq/mushongelma.JPG
Here is my vbscript
Dim intlcut
Sub lcut(strName, strLine, strWildcards)
intlcut = Int(intlcut + 1)
Info "Lcuts: " & intlcut & "."
End Sub
Dim intcut
Sub cut(strName, strLine, strWildcards)
intcut = Int(intcut + 1)
Info "Cuts: " & intcut & "."
End Sub
And here are the damage messages taken from random battle.
You lightly cut Geofer causing brain cells to quiver.
You lightly cut Geofer causing a small wound.
You cut Geofer causing a bad acid wound.
As you can se i only need that "You lightly cut" or "You cut" part for the trigger.