Ok, my compass was working for a while, but now I'm confused on using multi-line triggers.
Most rooms look like this -
Valley road before city. (road).
The bright sun shines down, blanketing you with its life-giving warmth. A large
block of stone is standing here, waiting to be carried out of the quarry. A
bright-eyed missionary serenely patrols the streets of Enorian.
You see exits leading southeast and northwest.
And my trigger worked fine, but now I've run into some problems with rooms like this -
Bend in the highway. (road).
Small flakes of white float through your field of vision here and there. You see
exits leading northeast and west
And some are like this -
Highway surrounded by lush plains. (road).
Snowflakes float down around you, colouring the world white. You see exits
leading northeast, southeast and southwest
I've tried making a multi-line trigger -
<triggers>
<trigger
enabled="y"
group="Compass"
lines_to_match="2"
match="^You see exits leading\n(.*)"
multi_line="y"
regexp="y"
script="Compass"
sequence="100"
>
</trigger>
</triggers>
and..
<triggers>
<trigger
enabled="y"
group="Compass"
lines_to_match="2"
match="^You see\nexits leading (.*)"
multi_line="y"
regexp="y"
script="Compass"
sequence="100"
>
</trigger>
</triggers>
But they don't seem to work, any suggestions?