I'm trying to match this line:
But only if it is NOT followed by one of these lines:
I'm trying to use this trigger:
But it isn't working out. It matches "You take a drink from * vial." no matter what line comes after it. Any suggestions?
You take a drink from * vial.But only if it is NOT followed by one of these lines:
The potion heals and soothes you.
Ah, the soothing bromides help strengthen your ego.
Your mind feels stronger and more alert.I'm trying to use this trigger:
<trigger
enabled="y"
lines_to_match="2"
match="(You take a drink from (.*) vial\.\n)(?!((The potion heals and soothes you\.)|(Ah, the soothing bromides help strengthen your ego\.)|(Your mind feels stronger and more alert\.)))"
multi_line="y"
regexp="y"
send_to="2"
sequence="100"
>
<send>Matched.</send>
</trigger>But it isn't working out. It matches "You take a drink from * vial." no matter what line comes after it. Any suggestions?