mudlet mapper help

by Israafiyl

Back to Mechanic's Corner.

Israafiyl2012-05-24 04:08:12
I use mudlet mapper as my primary means of getting around. I have recently found beastmastery and taught my pony to swim. The mapper does not seem to be able to ford it only swims can someone help me work this out?
Israafiyl2012-05-24 04:21:59
I figured it out, thank you
Israafiyl2012-05-24 04:24:24
now I am trying to gallop while in the water, anyone know how to make it so I only gallop if able?
Unknown2012-05-24 14:00:38
I don't think the mapper is smart enough to do that yet. It also tries to sprint constantly. I don't know of a way to fix that other than doing SURVEY after every room move.
Israafiyl2012-05-25 08:37:06
survey really didn't catch when not to gallop it seems
Unknown2012-05-25 12:08:56
Israafiyl:

survey really didn't catch when not to gallop it seems


No it doesn't, I'm saying you would have to change the mapper to utilize survey, or have it try to gallop first, and if that fails just do a normal walk.
Israafiyl2012-05-25 18:45:20
okay awesome thank you :)
Unknown2012-05-30 16:46:35
Is there a specific variable in the mapper that keeps track of what room you are currently in? I'm trying to code a trigger that only fires if I am in a particular room, and would like to use this as a shortcut if possible.
Neos2012-05-30 16:49:46
foolofsound:

Is there a specific variable in the mapper that keeps track of what room you are currently in? I'm trying to code a trigger that only fires if I am in a particular room, and would like to use this as a shortcut if possible.

mmp.currentroom I believe, but it's the room id, not name. Using gmcp also works.
Unknown2012-05-30 16:57:51
Be careful when using GMCP in conjunction with the MMP protocol (Read: Mapper.) Whilst most of the time it will work fine, there are a few discrepancies with room numbers.
Vadi2012-05-31 03:53:19
mmp.currentroom = current room ID
mmp.currentroomname = current room name
Unknown2012-05-31 05:08:20
Awesome. Thanks.