I've been trying to make a script to keep track of bonuses that I get from various things. Each time, there's a list of possible output, but there's no definate last line. I set up a trigger to match anything with a sequence number higher than the other triggers. It seems to match fine and turn itself off, but it doesn't display the note that I have to help me debug.
Here is the trigger:
I have it continue to evaluate just in case the new line is important to other triggers down the line. Would that mess it up?
Here is the trigger:
<trigger
group="hallowed_maker"
keep_evaluating="y"
match="^.*$"
name="anyotherline"
regexp="y"
send_to="12"
sequence="11"
other_text_colour="black"
other_back_colour="black"
>
<send>EnableTrigger( "anyotherline", 0 );
world.Note( "anyotherline called" );</send>
</trigger>
I have it continue to evaluate just in case the new line is important to other triggers down the line. Would that mess it up?