Multiboxing Guide
My long awaited Multiboxing Guide is finally here… the first part at least. I started writing this way back in November of last year when I wrote about my Adventures in Multiboxing. I got about halfway through it and then something else grabbed my attention, and I forgot all about it until a reader reminded me recently. So here is the first part on how to multibox and I’ll have it finished up soon.
If you’ve been around the WoW or MMO scene for any length of time, chances are very good that you’re familiar with, or have at least heard of, multiboxing. Multiboxing is when you are controlling multiple characters at the same time, whether it be two or more instances of WoW open on the same computer, or more than one computer, each with their own program of WoW.
Multiboxing can be useful for a number of reasons. The first, and most common reason, is that it makes killing things very easy. Many people multibox for quicker leveling, and some even do it in PvP to easily take down the competition. It can also be done to let a higher level character help a lower level one. Let’s take a look at how exactly multiboxing is done.
Multibox Lite
If you have more than one WoW account, or even just one paid account and one trial account, you can do a very simple version of multiboxing rather easily. Just open up two instances of WoW, one for each account, tell one character to /follow the other, and you’re set. I’ve done this numerous times to drag a lowbie alt through a dungeon on one of my higher level characters.
The main problem with this is that the second character can’t contribute or interact in any way. This doesn’t matter too much when you’re playing a high level character, but if you have two toons around the same level doing some quests, having both of them attacking at the same time will definitely speed things up.
The big advantage to multiboxing properly is that both of your characters are always contributing in some manner, whether it’s by attacking, healing or some other function.
Multiboxing Program
There are a number of programs out there to assist you in multiboxing. The one that I use is called AutoHotKey. It’s free, it can handle everything you need it to, and it’s also very easy to set it up for multiboxing. (It’s safe too - no keyloggers or spyware.)
AHK allows you to send your keystrokes automatically to multiple programs. So when you’re multiboxing you’ll be playing your main character, and the keys that you hit will be automatically sent to your other toon(s). Here’s how it works.
Once you’ve got AHK downloaded and installed, you need to edit the script, delete everything that is in there currently, and put in the following script:
WinGet, wowid, List, World of Warcraft
~XX::
KeyWait XX
IfWinActive, World of Warcraft
{
ControlSend,, XX, ahk_id %wowid1%
ControlSend,, XX, ahk_id %wowid2%
Return
}
You will need to change XX to the key that you want duplicated, and you can do multiple keys. So, for instance, if you wanted keys 1, 2 and 3 duplicated, then your script would look like this:
WinGet, wowid, List, World of Warcraft
~1::
KeyWait 1
IfWinActive, World of Warcraft
{
ControlSend,, 1, ahk_id %wowid1%
ControlSend,, 1, ahk_id %wowid2%
Return
}
~2::
KeyWait 2
IfWinActive, World of Warcraft
{
ControlSend,, 2, ahk_id %wowid1%
ControlSend,, 2, ahk_id %wowid2%
Return
}
~3::
KeyWait 3
IfWinActive, World of Warcraft
{
ControlSend,, 3, ahk_id %wowid1%
ControlSend,, 3, ahk_id %wowid2%
Return
}
If you want 4, 5, and 6, or Q, E, and R to be duplicated as well you can extend the script to include them.
A quick caveat on using AHK: Using the program as I’ve detailed is completely legal. Hitting one key and having one keystroke sent is fine. If you start playing around with AHK and add in a delay or start sending multiple keystrokes, that is crossing the line into botting and will get you banned.
Macros
Now that you’ve gotten AHK set up, you need to get some macros done as well. Most of the macros will need to be done for the secondary character, but there are a few for the main character that will help as well.
The first thing you need to do is decide which spells on the two characters you want paired up (i.e., cast at the same time). Since I was multiboxing a mage and a priest, I went with Frostbolt/Power Word: Shield, Fireball/Smite, and Fire Blast/Mind Blast.
Frostbolt, Fireball, Fire Blast is my normal spell rotation on my mage so I bound those spells to keys 1, 2, and 3. (You don’t have to do anything special for your main character here. Just pick your three spells, and bind them to the keys.)
For the secondary character, you’ll have to make macros for the spells. In my case, I made the following macros and bound them to keys 1, 2, and 3 on my priest.
Macro One:
/tar (Mage)
/cast Power Word: Shield
Macro Two:
/assist (Mage)
/cast Smite
Macro Three:
/assist Mage
/cast Mind Blast
A /follow macro for the secondary character will help a lot, saving you the trouble of having to type it every time.
/follow (Mage)
You’ll also need an invite macro for the main character.
/invite (Priest)
Check back soon for the second part.
