Auto Hot Key

Auto Hot Key is a nice nifty program that allows Window's users to automate many things, including multi boxing! To download or learn an extensive amount about this program go here - AutoHotkey - Free Mouse and Keyboard Macro Program with Hotkeys and AutoText
Auto Hot Key has several uses. For example, you can reduce your GCD by assigning macro's and abilities to one key, mouse movement, etc. It's a very useful program. One of the nice things this program has implemented within it is that you can use the Capslock key and the Windows key to bind your abilities/spells to. It's a very nice thing!
How to Use AHK (Auto Hot Key)
To do anything with AHK, you need to create a script. For this example I will create a script that will assign a certain key to SPAM a macro over and over, just by holding down the button!
I got this script from - World of Warcraft Scripts- This script will be used as an example.
Code:
WinGet, wowid, list, World of Warcraft
;2locks casting immolate
1::
KeyWait, 1, D
ControlSend,, 1 , ahk_id %wowid1%
ControlSend,, {F10} , ahk_id %wowid2% ; assist macro /target Party1 /assist
Sleep, 500
ControlSend,, 1 , ahk_id %wowid2%
Return
NumpadEnter::
KeyWait, NumpadEnter, D
ControlSend,, {F9} , ahk_id %wowid2% : follow macro
Return
; for an easy thumb to Numpad enter follow command
This is a basic script that allows you to be able to control multiple characters. This leads me to my next topic of multi boxing.
Multi Boxing and Auto Hot Key

Multi Boxing has been around for a long time. I remember doing it w/ a program called AutoIt. It is a very nice program. But, I have done this more recently with this program, Auto Hot Key.
What is Multi Boxing? Well, Multi Boxing is when one user is simultaneously controlling multiple accounts at the same time! Why would this be useful? Well...
- You are able to level multiple accounts at one time. This is especially useful if you intend to sell gold or accounts.
- If you have spare money and are looking for a challenge, this is a pretty fun task!
- You can solo heroics and possibly instances if you and a few friends had this going!
I am not going to go into full detail on how to Multi Box, because it is a very complex and tedious process. If you desperatley need help, please send me a private message and I will try and answer your questions.
But, in the meantime, I will point you to the guide that helped me figure outthis whole process!
Dual-Boxing.com Forums - Powered by vBulletin This is the link to the guide for Duel Boxing!
Can my Account get banned?
Well, that is actually a tough question to answer. The basic answer is NO. AHK is not a program banned by Blizzard. However, some of its operations are prohibited by Blizzard. It's very similar to the policy on the G15 keyboard. There has been no posts on the World of Warcraft forums prohibiting using AHK to multi-box. Using AHK is 99.99% safe!
Conclusion
I hope this guide helped you out, or gave you some insight into a VERY powerful program. As always, leave comments/suggestions if you have any questions!
Stans Dad