Close
Showing results 1 to 4 of 4
  1. #1

    Default Need help transforming dualbox to tribox

    I am basicly doing Daily quests on WoW with 1 char, and following with 2, but I can't figure out how to change from 2 to 3 accounts

    ;Tell user what is about to happen
    SplashTextOn, 325, , Preparing to find your Main and Clone windows of WoW.
    Sleep, 2000
    SplasHtextoff

    ;Grab unique window ID's
    WinGet, wowid, List, World of Warcraft

    ; Minimize All WOW windows
    WinMinimize, ahk_id %wowid1%
    WinMinimize, ahk_id %wowid2%

    ;Determine Main and Clone Windows
    WinActivate, ahk_id %wowid1%

    MsgBox, 4,, Is this your WOW Main window? (press Yes or No)
    IfMsgBox Yes
    idMain = %wowid1%
    else
    idMain = %wowid2%

    If idMain = %wowid1%
    {
    idClone = %wowid2%
    } else {
    idClone = %wowid1%
    }

    ;Activate All WOW windows
    WinActivate, ahk_id %idMain%
    WinActivate, ahk_id %idClone%


    ;*** Special Functions ***

    #IfWinActive, World of Warcraft
    ; *** Makes wow2 follow Wow1 Player ***
    ^-::
    ControlSend,,{- down}{- up}, ahk_id %idClone%
    return


    ; *******************
    ; *** Hotbars 1-0 ***
    ; *******************
    #IfWinActive, World of Warcraft
    ~1::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{1 down}{1 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~2::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{2 down}{2 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~3::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{3 down}{3 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~4::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{4 down}{4 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~5::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{5 down}{5 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~6::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{6 down}{6 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~7::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{7 down}{7 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~8::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{8 down}{8 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~9::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{9 down}{9 up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~0::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{0 down}{0 up}, ahk_id %idClone%
    return



    ; ***************************
    ; *** Hotbars Shift ^ 1-0 ***
    ; ***************************
    #IfWinActive, World of Warcraft
    ~+1::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{1 down}{1 up}{Shift up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~+2::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{2 down}{2 up}{Shift up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~+3::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{3 down}{3 up}{Shift up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~+4::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{4 down}{4 up}{Shift up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~+5::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{5 down}{5 up}{Shift up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~+6::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{6 down}{6 up}{Shift up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~+7::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{7 down}{7 up}{Shift up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~+8::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{8 down}{8 up}{Shift up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~+9::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{9 down}{9 up}{Shift up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~+0::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Shift down}{0 down}{0 up}{Shift up}, ahk_id %idClone%
    return

    ; **************************
    ; *** Hotbars Cntl ^ 1-0 ***
    ; **************************
    #IfWinActive, World of Warcraft
    ~^1::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{1 down}{1 up}{Ctrl up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~^2::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{2 down}{2 up}{Ctrl up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~^3::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{3 down}{3 up}{Ctrl up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~^4::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{4 down}{4 up}{Ctrl up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~^5::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{5 down}{5 up}{Ctrl up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~^6::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{6 down}{6 up}{Ctrl up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~^7::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{7 down}{7 up}{Ctrl up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~^8::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{8 down}{8 up}{Ctrl up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~^9::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{9 down}{9 up}{Ctrl up}, ahk_id %idClone%
    return

    #IfWinActive, World of Warcraft
    ~^0::
    ControlSend,,{= down}{= up}, ahk_id %idClone%
    ControlSend,,{Ctrl down}{0 down}{0 up}{Ctrl up}, ahk_id %idClone%
    return

  2. #2

    Default

    nobody using Auto Hot Key?

  3. #3

    Default

    I used to and I can tell you two things right off the bat: ALL the lines containing = keys are unnecessary; I'm assuming you had Sorn's script and his script has that in every line becuase = was his /assist macro hotkey, only reason it's there is for his convenience and he forgot that when he posted it lol; second: Adding a third is relatively simple, simply copy and paste the code(or replace the = key code with a copy of your other line) and modify it to send to the third instance instead of the 2nd; however I don't have access to my old files at home right now so I dunno what the specific modifiers are for wowids lol
    Not Currently Boxing
    IRC Excerpt:
    Drayth> Finish this set: Spaceturkey Lazurturkey Moonturkey Starturkey - and no, don't say Sunturkey.
    Fursphere> Moonturkey? Drayth> Look at #3...lol - Fursphere> damnit...Starturkey?
    Fursphere> FUCK. - Drayth> lol... * Fursphere gets on the failboat

  4. #4

    Default

    the "=" is for a follow macro, and yeah the wowid's part is kinda the problem

Similar Threads

  1. Best Dualbox combo?
    By h8train in forum New Multi-Boxers & Support
    Replies: 2
    Last Post: 10-11-2008, 07:32 PM
  2. Help me dualbox!
    By ChivasGimli in forum New Multi-Boxers & Support
    Replies: 1
    Last Post: 09-08-2008, 05:57 AM
  3. Tribox team
    By Xiarria in forum New Multi-Boxers & Support
    Replies: 2
    Last Post: 06-10-2008, 12:18 PM
  4. How fast can you tribox a baron 45 run with 3 lvl 70s? :)
    By Saph in forum General WoW Discussion
    Replies: 16
    Last Post: 05-14-2008, 02:27 AM
  5. Replies: 11
    Last Post: 01-16-2008, 11:47 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
  •