So here is the issue. Writing a script to color certain phrases in a line for me. Triggers fine, colors fine. But when I try to get it to omit the original line from output, it omits both.
<triggers>
<trigger
back_colour="8"
enabled="y"
match="^(.+) unlocks the (.+) to the (.+)\.$"
match_back_colour="y"
omit_from_output="y"
regexp="y"
send_to="12"
sequence="100"
>
<send>world.ColourTell('#FFFFFF', '', '%1')
world.ColourTell('#CCCCCC', '', ' unlocks the ')
world.ColourTell('#FFFFFF', '', '%2', )
world.ColourTell('#CCCCCC', '', ' to the ')
world.ColourTell('#FFFFFF', '', '%3')
world.ColourNote('#CCCCCC', '', '. ')</send>
</trigger>
</triggers>
|