• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Detect keypress foward (1 Viewer)

Joined
Sep 26, 2005
RedCents
1. is there a way for a macro to detect when you push the arrow key foward and then react to it?

2. whould it better to have it call a sub when it reacts or just have it in the main sub with a loop? which has faster reaction time?
 
Something like this maybe:
Rich (BB code):
Sub Main
   /declare AnchorX              int outer ${Me.X}
   /declare AnchorY              int outer ${Me.Y}

:loop
/doevents
/call moved
/goto :loop

Sub moved
/if (${Math.Distance[${AnchorY},${AnchorX}]}>some#) {
do shit here
}
/return
 
Detect keypress foward

Users who are viewing this thread

Back
Top