|
Corinthur Newbie
Joined: 08 May 2003 Posts: 2
|
Posted: Thu May 08, 2003 3:28 pm
Fast mode Speedwalking |
Hi, I'm just curious if theres a way to edit the format in which the mapper sends the directions to the mud in fast mode. Currently it sends as: "6n11w8s". All together in one block. The format for my mud is "do 6n,11w,8s". So i'm wondering if there is somewhere that I can edit it so that it puts in the "do" and the commas between each direction?
|
|
|
|
Daagar Magician
Joined: 25 Oct 2000 Posts: 461 Location: USA
|
Posted: Thu May 08, 2003 11:07 pm |
Even though this is what you see ZMud sending, I believe what your mud should really be getting is n;n;n;n;n;n;w;w;w;w;w;w;w;w;w;w;w;s;s;s;s;s;s;s;s
(that is to say, each direction is sent to the mud one at a time, just really fast). |
|
|
|
Corinthur Newbie
Joined: 08 May 2003 Posts: 2
|
Posted: Fri May 09, 2003 2:20 am |
No, it sends "6n11w18s" in a block, and my mud returns: "What?" (the reply to a command that it doesn't understand.) So no, its not sending them individually.
|
|
|
|
TonDiening GURU
Joined: 26 Jul 2001 Posts: 1958 Location: Canada
|
Posted: Fri May 09, 2003 2:40 am |
How is your movement character set up?
view->preferences->special characters
Movement Char: [.] [x]
It should be sending .6n11w18s I believe?
How/Why is zmud sending those directions? Double clicking a room? Paths?
Ton Diening |
|
|
|
Kjata GURU
Joined: 10 Oct 2000 Posts: 4379 Location: USA
|
Posted: Fri May 09, 2003 1:32 pm |
You seem to be missing your #DIR's. Enter this into zMUD:
#DIR ns "n|north" n
#DIR sn "s|south" s
#DIR ew "e|east" e
#DIR we "w|east" w
#DIR ud "u|up" u
#DIR du "d|down" d
Kjata |
|
|
|
|
|