|
ToyMage Apprentice
Joined: 01 Sep 2005 Posts: 120
|
Posted: Thu Oct 27, 2005 6:13 am
Speedwalk On Map |
Hi,
This is what I want to do.
I want to be able to walk on the MAP but not walk on the MUD.
For example, i type
".nnnnwww"
The mapper actually traces and walks the direction, but does not send the directions to the mud. Meaning only the map position moves.
I wonder if that is too confusing...
Confused Mage |
|
|
|
Insomniac Wanderer
Joined: 25 Mar 2004 Posts: 78 Location: United Kingdom
|
Posted: Thu Oct 27, 2005 7:33 am |
#MOVE is the command you're looking for.
|
|
_________________
No-one ever gets flamed for posting too much information. Conform to the PPP (Preferred Posting Protocol) and give as much information as possible, including MUD output where needed. |
|
|
|
ToyMage Apprentice
Joined: 01 Sep 2005 Posts: 120
|
Posted: Thu Oct 27, 2005 8:52 am |
hi thanks,
it is the command, but I don't understand why it is not working in my macro key.
#MOVE @DIRECTIONS
Nothing happens when I press F5... |
|
|
|
ToyMage Apprentice
Joined: 01 Sep 2005 Posts: 120
|
Posted: Thu Oct 27, 2005 8:55 am |
I realized that move can only process one movement at a time...
how can i make it process multiple directions at a time?
#MOVE @DIRECTIONS
@DIRECTIONS = NNNWWW |
|
|
|
Insomniac Wanderer
Joined: 25 Mar 2004 Posts: 78 Location: United Kingdom
|
Posted: Thu Oct 27, 2005 11:50 am |
Setup an alias then.
Something like:
#ALIAS MapMover {#VAR DelimitedDirs %pathexpand( @Directions);#FORALL @DelimitedDirs {#MOVE %i}}
You can then put the alias MapMover into your macro (F5) key |
|
_________________
No-one ever gets flamed for posting too much information. Conform to the PPP (Preferred Posting Protocol) and give as much information as possible, including MUD output where needed. |
|
|
|
|
|