-
I use commands similar to Metal's above.. I'll post it when I get home from work. Basically, I press F1 to get into 'diamond' formation. Alt 1 moves forward, alt 2 moves backward, alt 3 strafes left, and alt 4 strafes right. This breaks /follow and I retain standard control over my main. The longer I hold F1, the farther apart they spread.. there's no 'sleep/wait' command - it's all based on sensing a 'keypress up' after 'keypress down' events.
-
Here's my AHK 'formation' when I press F1. F1 is unbound on my main, and bound to Move Forward on alt 1, Strafe Left on alt 2, Strafe Right on alt 3, and Move Backward on alt 4.
Code:
~F1::
IfWinActive, World of Warcraft
{
ControlSend, , {F1 Down}, ahk_id %wowid1%
ControlSend, , {F1 Down}, ahk_id %wowid2%
ControlSend, , {F1 Down}, ahk_id %wowid3%
ControlSend, , {F1 Down}, ahk_id %wowid4%
ControlSend, , {F1 Down}, ahk_id %wowid5%
}
Return
~F1 Up::
IfWinActive, World of Warcraft
{
ControlSend, , {F1 Up}, ahk_id %wowid1%
ControlSend, , {F1 Up}, ahk_id %wowid2%
ControlSend, , {F1 Up}, ahk_id %wowid3%
ControlSend, , {F1 Up}, ahk_id %wowid4%
ControlSend, , {F1 Up}, ahk_id %wowid5%
}
Return