|
ganmo Beginner
Joined: 23 Oct 2008 Posts: 18
|
Posted: Tue Oct 19, 2010 5:25 pm
question about automapper |
Hello,
I wonder if it's possible to change the direction keys automapper registers as a movement.
Seeing as it is now it will assume both E and e to be a movement to east.
But in the mud I play uppercase is not used for movement. |
|
|
|
MattLofton GURU
Joined: 23 Dec 2000 Posts: 4834 Location: USA
|
Posted: Wed Oct 20, 2010 1:38 am |
CMud tests macros based on keycode (the value your keyboard passes to the rest of your computer, indicating exactly which key your finger pushed down on), which I believe doesn't care about the status of CAPS LOCK. Thus, for all intents and purposes if all you are doing is pressing the "E" key on the keyboard then there's no difference between "E" and "e".
You can work around this, I think, via a command-input trigger:
Code: |
#oninput {^E$} {
#noinput
#sendraw "e"
} |
|
|
_________________ EDIT: I didn't like my old signature |
|
|
|
|
|