|
complex Apprentice
Joined: 12 Apr 2004 Posts: 134 Location: USA
|
Posted: Wed Jun 15, 2005 7:01 am
quick Zmapper question |
Is there a command like "goto room #" that you can trigger.
Example bob says meet up at room #
then a trigger goes off that # and sends me to that room. I would rather not have to path to every room. And I would like to be able to fastwalk from anywhere without haven to recall.
Thanks
Complex |
|
_________________ <Clever text here> |
|
|
|
Zugg MASTER
Joined: 25 Sep 2000 Posts: 23379 Location: Colorado, USA
|
Posted: Wed Jun 15, 2005 7:44 am |
Take a look at the #WALK command that will send speedwalk commands using the shortest path to the given room. Or, the #TELEPORT command which will move you on the map to a specific room without sending any commands to the MUD.
|
|
|
|
complex Apprentice
Joined: 12 Apr 2004 Posts: 134 Location: USA
|
Posted: Thu Jun 16, 2005 9:08 am |
*slaps self on forehead* #walk... so simple thanks
ok so i have my move points saved in a var @Mv
what does this not work
#tr whatever #if (@Mv > 100) {#walk 2832}
also i have one that does not work
#tr whatever #if (@Mv = 0) {recall;heal move}
i cant get either to work. Thanks for the help |
|
_________________ <Clever text here> |
|
|
|
TitanKiller Newbie
Joined: 10 Jun 2005 Posts: 8
|
Posted: Thu Jun 16, 2005 2:49 pm |
Try this
#TRIGGER whatever {#IF (@Mv > 100) {#WALK 2832}}
#TRIGGER whatever {#IF (@Mv = 0) {recall;heal move}} |
|
_________________ Come join me!
AustinMUD - austin.prg.dtu.dk:4000 |
|
|
|
|
|