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

    Default Just Started Dual Boxing

    Nvm I found that Autohotkey is freewarez tyvm guys

    Any tips for classes 1st timer

  2. #2

    Default

    <points to the stickies and the Wiki>

    Info is that way. Good luck, dear!

    My work is a game, a very serious game. --M.C. Escher

  3. #3

    Default Mmmm

    I cant seem to get Autohotkey to work write now my script is this\


    Code:
    ; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
    ; semicolon, such as this one, are comments.  They are not executed.
    
    ; This script has a special filename and path because it is automatically
    ; launched when you run the program directly.  Also, any text file whose
    ; name ends in .ahk is associated with the program, which means that it
    ; can be launched simply by double-clicking it.  You can have as many .ahk
    ; files as you want, located in any folder.  You can also run more than
    ; one ahk file simultaneously and each will get its own tray icon.
    
    ; SAMPLE HOTKEYS: Below are two sample hotkeys.  The first is Win+Z and it
    ; launches a web site in the default browser.  The second is Control+Alt+N
    ; and it launches a new Notepad window (or activates an existing one).  To
    ; try out these hotkeys, run AutoHotkey again, which will load this file.
    
    #z::Run C:\Documents and Settings\***** (my name)\Desktop\My Stuff\World of Warcraft\Wow.exe
    
    #x::Run C:\Program Files\World of Warcraft\Wow.exe
    
    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
    
    #IfWinActive, World of Warcraft
       ; *** Makes wow2 Assist Wow1 Player ***
       ^=::
       ControlSend,,{= down}{= up},  ahk_id %idClone%
    return
    
    ; *******************
    ; *** Hotbars 1-0 ***
    ; *******************
    #IfWinActive, World of Warcraft
       ~1::
       ControlSend,,{1 down}{1 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{1 down}{1 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~2::
       ControlSend,,{2 down}{2 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{2 down}{2 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~3::
       ControlSend,,{3 down}{3 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{3 down}{3 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~4::
       ControlSend,,{4 down}{4 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{4 down}{4 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~5::
       ControlSend,,{5 down}{5 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{5 down}{5 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~6::
       ControlSend,,{6 down}{6 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{6 down}{6 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~7::
       ControlSend,,{7 down}{7 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{7 down}{7 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~8::
       ControlSend,,{8 down}{8 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{8 down}{8 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~9::
       ControlSend,,{9 down}{9 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{9 down}{9 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~0::
       ControlSend,,{0 down}{0 up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{0 down}{0 up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~j::
       ControlSend,,{j down}{j up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{j down}{j up},  ahk_id %idClone%
    return
    
    
    ; ***************************
    ; *** Hotbars Shift ^ 1-0 ***
    ; ***************************
    #IfWinActive, World of Warcraft
       ~+1::
       ControlSend,,{Shift down}{1 down}{1 up}{Shift up},  ahk_id %idMain%
       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,,{Shift down}{2 down}{2 up}{Shift up},  ahk_id %idMain%
       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,,{Shift down}{3 down}{3 up}{Shift up},  ahk_id %idMain%
       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,,{Shift down}{4 down}{4 up}{Shift up},  ahk_id %idMain%
       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,,{Shift down}{5 down}{5 up}{Shift up},  ahk_id %idMain%
       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,,{Shift down}{6 down}{6 up}{Shift up},  ahk_id %idMain%
       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,,{Shift down}{7 down}{7 up}{Shift up},  ahk_id %idMain%
       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,,{Shift down}{8 down}{8 up}{Shift up},  ahk_id %idMain%
       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,,{Shift down}{9 down}{9 up}{Shift up},  ahk_id %idMain%
       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,,{Shift down}{0 down}{0 up}{Shift up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{Shift down}{0 down}{0 up}{Shift up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~+t::
       ControlSend,,{Shift down}{0 down}{0 up}{Shift up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{Shift down}{0 down}{0 up}{Shift up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~+v::
       ControlSend,,{Shift down}{0 down}{0 up}{Shift up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{Shift down}{0 down}{0 up}{Shift up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       ~+b::
       ControlSend,,{Shift down}{0 down}{0 up}{Shift up},  ahk_id %idMain%
       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,,{Ctrl down}{1 down}{1 up}{Ctrl up},  ahk_id %idMain%
       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,,{Ctrl down}{2 down}{2 up}{Ctrl up},  ahk_id %idMain%
       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,,{Ctrl down}{3 down}{3 up}{Ctrl up},  ahk_id %idMain%
       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,,{Ctrl down}{4 down}{4 up}{Ctrl up},  ahk_id %idMain%
       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,,{Ctrl down}{5 down}{5 up}{Ctrl up},  ahk_id %idMain%
       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,,{Ctrl down}{6 down}{6 up}{Ctrl up},  ahk_id %idMain%
       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,,{Ctrl down}{7 down}{7 up}{Ctrl up},  ahk_id %idMain%
       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,,{Ctrl down}{8 down}{8 up}{Ctrl up},  ahk_id %idMain%
       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,,{Ctrl down}{9 down}{9 up}{Ctrl up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{Ctrl down}{9 down}{9 up}{Ctrl up},  ahk_id %idClone%
    return
    
    #IfWinActive, World of Warcraft
       v::
       ControlSend,,{Ctrl down}{0 down}{0 up}{Ctrl up},  ahk_id %idMain%
       ControlSend,,{= down}{= up},  ahk_id %idClone%
       ControlSend,,{Ctrl down}{0 down}{0 up}{Ctrl up},  ahk_id %idClone%
    return
    
    Space::  ; jump
    KeyWait, Space, D
       ControlSend,, {Space} , ahk_id %wowid1%
       ControlSend,, {Space} , ahk_id %wowid2%
    Return

  4. #4

    Default RE: Just Started Dual Boxing

    [quote='Aliasneo',index.php?page=Thread&postID=6834 4#post68344]Nvm I found that Autohotkey is freewarez tyvm guys

    Any tips for classes 1st timer[/quote]

    This should give a good start:

    [url='http://www.dual-boxing.com/forums/index.php?page=Thread&threadID=2399']Mulitboxing Class Selection FAQ[/url]

Similar Threads

  1. Just started dual boxing
    By l1nk3 in forum New Multi-Boxers & Support
    Replies: 2
    Last Post: 12-23-2008, 05:01 AM
  2. I just need help to get started dual-boxing 2 chars
    By victorhb in forum New Multi-Boxers & Support
    Replies: 12
    Last Post: 12-01-2008, 08:52 PM
  3. Just started Dual Boxing - Some feedback
    By wscutt in forum General WoW Discussion
    Replies: 2
    Last Post: 09-15-2008, 05:27 PM
  4. Just started Dual-Boxing ! :D
    By Gutti123 in forum New Multi-Boxers & Support
    Replies: 11
    Last Post: 08-03-2008, 12:32 PM
  5. I started up some dual-boxing..
    By Vaquum in forum General WoW Discussion
    Replies: 1
    Last Post: 02-29-2008, 01:24 AM

Posting Rules

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