Auto Mapper question

Posted by Cringe on Fri 22 Nov 2002 02:23 PM — 2 posts, 11,502 views.

#0
Heya,

I've got a couple questions for you all. First off, is there a reason why when I turn off speed walking in my alias that it doesn't work? I mean, when I have speed walking on the MUD I'm on takes me to the destination with no problem. But when I turn it off I get an error message. The reason I ask is because I want to 'run' a certain area of the MUD which means I have triggers set up to look for and kill certain enemies in that area. When I manually run the area my triggers work fine but with speed walking on it doesn't work at all. Any help would be great!!

-Cringe.
Greece #1
it's because the speedwalk probably sends the direction before the trigger, and that means that the mud walks past the enemy before the trigger sees him. I.E. if the enemy is 3 south and you want to go 4 south, the speedwalk sends:
south
>>> Mud walks south, lagging a bit
south
>>> Mud walks south, lagging some more
south
south
>>>Mud walks 1 south, because of the walk lag
>>>You see the enemy, trigger fires
>>>Mud walks 1 south, because of the command you sent.
trigger action
south < the last speedwalk command gets sent here
>>>Mud walks one south
>>>Your trigger fires

You can try increasing the speedwalk delay, but i think triggers get stacked in the end of the speedwalk anyway, so you'd have to walk manually or stop the speedwalk and go back