|
Insomniac Wanderer
Joined: 25 Mar 2004 Posts: 78 Location: United Kingdom
|
Posted: Sat Mar 27, 2004 2:52 pm
#WALK |
Hey.
I'm trying to set up a somewhat simple trigger but am having difficulty.
I want the trigger to fire off some text, then #WALK to a room, then do something.
I have it setup like this...
pattern: (%w) addressed to the bob
Value: #walk 129
give %1 to bob
And for some reason it starts off the walk, and then tries to 'give %1 to bob'
Am I doing something wrong, all I want is for things to happen in order ie. #walk 129, on arrival, give %1 to bob
Any help?
Edit: It works fine on speedwalking mode, just not on safe or slow which is what I require.
-=Insomniac=- |
|
|
|
Bromax Wanderer
Joined: 03 Jan 2002 Posts: 66
|
Posted: Sat Mar 27, 2004 9:02 pm |
I'm a total nOOb at this, but how about:
#walk 129
#alias onwalkend {give %1 to bob} |
|
|
|
nexela Wizard
Joined: 15 Jan 2002 Posts: 1644 Location: USA
|
Posted: Sat Mar 27, 2004 9:55 pm |
If your in slow walking mode it will send
DIR
give %1 to bob
DIR
....
if your in Fast/safe it will send
DIR
DIR
...
give %1 to bob
One way to do it is like broomax said but with a little mod
#AL onwalkend {give %1 to bob;#UNAL onwalkend}
There are other ways to do this I believe but it will take some more coffee before I remember |
|
|
|
Insomniac Wanderer
Joined: 25 Mar 2004 Posts: 78 Location: United Kingdom
|
Posted: Sun Mar 28, 2004 12:43 pm |
Works good, thank you both!
If there's any other methods too, I'd be interested to know, just for knowledge
-=Insomniac=- |
|
|
|
|
|