|
Lichban Newbie
Joined: 31 Mar 2004 Posts: 3 Location: South Africa
|
Posted: Wed Mar 31, 2004 10:15 pm
Move command and map |
I use macros defined like
key7
#if @AutoSneak=1 {
sneak northwest
#move northwest
} {northwest}
Now that works fine in the mud but on the map if i'm at a start of example 5 string rooms running to the northwest my map positions jumps to the last room when i'm sneaking ... if i remove the #move northwest line it doesnt move at all .. help will be apreciated |
|
|
|
Vijilante SubAdmin
Joined: 18 Nov 2001 Posts: 5182
|
Posted: Thu Apr 01, 2004 12:09 am |
Start by changing all your macros back to the simple form they were originally. Next add sneak direction to the list of commands in your Direction settings (by default they are in System|Directions and SystemDirectionDiag classes).
Finally use this trigger:
#ONINPUT {^(%t)$} {#IF (@AutoSneak=1) {#SUB {sneak %1}}} "" {notrig}
This should also take care of your question in another post. |
|
|
|
Lichban Newbie
Joined: 31 Mar 2004 Posts: 3 Location: South Africa
|
Posted: Fri Apr 02, 2004 4:55 pm |
Thnx for the help
|
|
|
|
|
|