kognesty Newbie
Joined: 08 Jan 2001 Posts: 8 Location: USA
|
Posted: Wed Mar 27, 2002 9:48 pm |
As I have experienced, and this might not be true for everyone, the #MOVE command is used during mapping and fails miserably when in follow mode. However, this might be unique to my mud. So it might work best to trigger on a successful move, i.e. trigger after the command and catch the automapper up to your movements. This can be done by setting up two triggers, one to capture your movement and one to tell the automapper you've moved and where. Setup an on command trigger that saves your direction to a variable then setup a pattern matching trigger to your exits line (if you have one).
You would get something like this:
push cart %w - pattern
#var dir %1 - action
push cart %1 - action
[Exits: (*)] - pattern
#MOVE @dir - action
#OK - action
Again the first suggestion made might work flawlessly but this is an alternative incase your #move command is behaving poorly. |
|