|
tkeys43 Newbie
Joined: 22 Aug 2003 Posts: 1 Location: Australia
|
Posted: Fri Aug 22, 2003 11:29 pm
word wrap |
I am having trouble capturing multiple lines for my trigger to work]
For example #trigger A butterfly flits about your head.
there mud has it mostly as such
"a butterfly flits
about your head"
trigger does not catch that because the "about your head is on a new line?
Can not find how to modify word wrap. This is on the mud Achaea.[}:)] |
|
|
|
megamog75 Enchanter
Joined: 20 Nov 2002 Posts: 627 Location: USA
|
Posted: Sat Aug 23, 2003 7:09 pm |
try searching this Forum and finished mud scripts forum for "multi line triggers"
You will find that this subject is talked about very often.
Do you find it neccesery to Trigger the whole thing?
Why not this? #trigger {"a butterfly flits} {whatever}
but here is one way:
#TRIGGER {^"a butterfly flits$} {#temp {^about your head"$} {whatever}}
here is another more powerful
Check out the hilp file on #condition
#TRIGGER {^"a butterfly flits$} {#noop}
#COND {^about your head"$} {wow this works} |
|
|
|
|
|