Hey there, I'm having some trouble with this trigger here. I'm trying to match on the left or right, but the %1 calls out the entire line when I have it set up as an alternate type of trigger. Any way I can call that left|right to check for a match?
<triggers>
<trigger
enabled="y"
group="aff"
keep_evaluating="y"
match="(^missing the (left|right) ear\.$|^Blood flows into your (left|right) side inner ear\, inhibiting your sense of balance\.$)"
name="severedear_aff"
regexp="y"
repeat="y"
send_to="12"
sequence="100"
>
<send>if ("%1" = "right") Then
call diagcall ("severed_rightear")
elseif ("%1" = "left") Then
call diagcall ("severed_leftear")
end if</send>
</trigger>
</triggers>