Hi everyone, today id like to tell you all about a program i've been ussing for the last 3 years while playing WoW. It's called AutoHotkey and its helped me maximize myself in any roll I play.
Basically what it does, is it spams the key your holding down. I use it for 1-9, So say your healer and you have ur mana efficient heal on 3. Just hold down 3 and this program will spam it for you. Every millisecond. So even if you are having lag, the server is receiving your command early and still casts the spell compleatly ignoring your MS. For some classes this might not be as usefull as others, but there is potential for it everywhere. It also saves your fingers alot of pain and you dont have to focus on mashing thoes buttons as fast as you can, rather on whats going on around you.
So, how do you get this runing? Heres a step by step guide!
1) Go to the website AutoHotkey - Free Mouse and Keyboard Macro Program with Hotkeys and AutoText and download the program.
2) Install it, once its done it will ask you if you want to creat your first AHK file in my documents, press yes.
3) Go into my documents, open the file, delete everything you find there and copy this into it
#ifWinActive World of Warcraft
{
$1::
Loop
{
if not GetKeyState("1", "P")
break
Send 1
sleep 1
}
return
$2::
Loop
{
if not GetKeyState("2", "P")
break
Send 2
sleep 1
}
return
$3::
Loop
{
if not GetKeyState("3", "P")
break
Send 3
sleep 1
}
return
$4::
Loop
{
if not GetKeyState("4", "P")
break
Send 4
sleep 1
}
return
$5::
Loop
{
if not GetKeyState("5", "P")
break
Send 5
sleep 1
}
return
$6::
Loop
{
if not GetKeyState("6", "P")
break
Send 6
sleep 1
}
return
$7::
Loop
{
if not GetKeyState("7", "P")
break
Send 7
sleep 1
}
return
$8::
Loop
{
if not GetKeyState("8", "P")
break
Send 8
sleep 1
}
return
$9::
Loop
{
if not GetKeyState("9", "P")
break
Send 9
sleep 1
}
return
$0::
Loop
{
if not GetKeyState("0", "P")
break
Send 0
sleep 1
}
return
}
4) Save, and then double click it to load. You should now have a green H in your taskbar.
Tip: While logging in to wow you might want to disable it (Right click the H in the taskbar and click suspend) ells you will end up with 33333333333333 instead of 3. I've been ussing it for so long that I just delete the extra numbers added by it.
Whats blizzards point of view on this? They just dont give a ****. I've been ussing it for 3 years, and I've never had anything happen to my account. Neither has my BF and our friends. Loop codes arent allowed by the TOS but there is no way blizzard could ever know. But if your skitish about these kind of things dont use it
It takes some time getting used to, but after a while you really start seeing the benefit of it!
Enjoy!