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

    Default Multiboxing help please!

    Hi, I am new to this multiboxing stuff and i have recently used someone's script that was posted on one of the forums. I use 2 accounts and i can get the second one to jump when I jump and follow my but i can't figure out how to to get him to cast when I cast. I can't find any sample scripts or help anywhere and was wondering if there were any veterans use to doing this that could offer some advice. I have gotten him to cast once or twice until one target was dead, but when I move to the second it doesn't respond and it's just me casting again. I don't know if i'm missing something but I know it isn't right, please help ?(

  2. #2

    Default

    Probably you are missing an assist script.

    /assist name

    I normally map this to the #1 key, so that when i attack a target on my primary, my slaves assist and target my target at the same time. Then, you don't need any special macros for your actual spell cast, as it's just a normal spell cast. Just map it to a key you press on your primary for an attack and it should go without any problems.
    <Lunatic Rising> Fenris (Horde) US, PVE

    5x Shamans: Khazarel, Khazrael, Khazrela, Khazreal, Khazeral
    1....10....20....30....40....5052...60....70

    1x Paladin: Rhaeryn, 1x Priest: Valyon, 1x Druid: Thaedyn, 1x Mage: Runare, 1x Hunter: Alef
    1....10....20....30....40....50....60....70

  3. #3

  4. #4

    Default

    I'm new to this so please bear with me. Now when you say /assist <name> is that a macro i need to have on my main or on the slave? Or is that totally out of the game in on a hotkey script? I am script challenged and need guidance . Like I said i copied one that someone had on a forum and that's all i have done with it script wise. I wish there was a Basic+basic tutorial to go by. This is the current script I am using. If anyone could please look it over and tell me if there is anything wrong it would much appreciated!

    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

  5. #5

    Default

    In your script delete all the lines containing =down =up, Sorn wrote that script and his Assist macro was bound to his '=' key, hence why it's in every line lol; it'll be useless to you more than likely.

    Ingame, type /macro, click New, name it Assist, pick any icon you want, hit Ok, in the box on left while Assist is selected, put this in the box below:

    /target MainsName OR /target Focus(Whichever method you use, NOT both and NOT this text in parenthesis lol)
    /follow
    /assist
    /stopcasting (This line is OPTIONAL, it's a nice way to stop your alt's casting though if you need to lol)

    The above macro goes on either the Alt only, or the alt AND main; HOWEVER. If you DO put it on the main too(In case you just want to keep hotkeys matching, or to switch mains on the fly), remove the /assist line; otherwise you're gonna be assisting the Mob you're targeting, and mid-fight that means you're gonna be targeting yourself or your alt instead and that'll make the alt target you/himself too 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

Similar Threads

  1. Replies: 35
    Last Post: 04-21-2009, 11:35 AM
  2. multiboxing? Yeah multiboxing! ;)
    By empeha in forum Screenshots and Digital Art
    Replies: 5
    Last Post: 12-12-2007, 03:33 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
  •