Close
Page 2 of 2 FirstFirst 1 2
Showing results 11 to 12 of 12

Thread: Formation AHK

  1. #11

    Default

    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.
    Ex-WoW 5-boxer.
    Currently playing:
    Akama [Empire of Orlando]
    Zandantilus - 85 Shaman, Teebow - 85 Paladin, Kodex - 85 Rogue.

    Definitely going to 4-box Diablo 3 after testing the beta for how well this would work.

  2. #12

    Default

    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
    Ex-WoW 5-boxer.
    Currently playing:
    Akama [Empire of Orlando]
    Zandantilus - 85 Shaman, Teebow - 85 Paladin, Kodex - 85 Rogue.

    Definitely going to 4-box Diablo 3 after testing the beta for how well this would work.

Similar Threads

  1. wow shaman formation
    By gigauae in forum General WoW Discussion
    Replies: 1
    Last Post: 09-15-2008, 08:10 PM
  2. formation
    By aliguu in forum New Multi-Boxers & Support
    Replies: 2
    Last Post: 08-06-2008, 12:19 PM
  3. Formation
    By Apollo127 in forum New Multi-Boxers & Support
    Replies: 1
    Last Post: 07-02-2008, 05:04 PM
  4. Formation Macros.
    By Voidshift in forum Macros and Addons
    Replies: 1
    Last Post: 06-27-2008, 01:40 AM
  5. Formation Macros?
    By Jusa in forum Macros and Addons
    Replies: 1
    Last Post: 11-21-2007, 05:43 PM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •