I'm a bit confused at this one. I want to match on:
Exits: north south
<13hp>
but not
Exits: north south
Someone is standing here.
<13hp>
I don't want to use the prompt to match, so I thought I could make a multiline trigger that matches on:
^Exits\: (.*?)\.\n\z
But it matches in both cases. How can I make it match on Exits: * and then an empty line?
Exits: north south
<13hp>
but not
Exits: north south
Someone is standing here.
<13hp>
I don't want to use the prompt to match, so I thought I could make a multiline trigger that matches on:
^Exits\: (.*?)\.\n\z
But it matches in both cases. How can I make it match on Exits: * and then an empty line?