I am having a similar problem except that the \n does not seam to be correcting it.... i am trying to have this as the Match= section
"
You hold a wooden sword firmly, and start spinning round...
You feel dizzy, and a tiny bit embarassed.
"
more specifically I want it to catch on something like this:
"
*You hold*firmly, and start spinning round...
You feel dizzy, and a tiny bit embarassed.
"
i have tried a couple different things and none seams to want to work... here they are.
1st try:
<triggers>
<trigger
enabled="y"
lines_to_match="2"
match="You hold a wooden sword firmly, and start spinning round...\nYou feel dizzy, and a tiny bit embarassed."
multi_line="y"
regexp="y"
sequence="1"
>
</trigger>
</triggers>
2nd Try:
<triggers>
<trigger
enabled="y"
lines_to_match="2"
match="You hold*firmly, and start spinning round...\n*You feel dizzy, and a tiny bit embarassed."
multi_line="y"
regexp="y"
sequence="1"
>
</trigger>
</triggers>
3rd Try:
<triggers>
<trigger
enabled="y"
lines_to_match="2"
match="You hold a wooden sword firmly, and start spinning round...(\n)You feel dizzy, and a tiny bit embarassed."
multi_line="y"
regexp="y"
sequence="1"
>
</trigger>
</triggers>
|