Log in

View Full Version : Need help with auto hotkey



tankstorm
11-02-2008, 01:33 AM
anyone have a script for quad boxing? (4 chars all shammys) for autohotkey?

xshadowdragon
11-07-2008, 12:50 AM
Just from looking at the script for two, I came up with this



WinGet, wowid, List, World of Warcraft

~+::
KeyWait 2
IfWinActive, World of Warcraft
{
ControlSend,, +, ahk_id %wowid1%
ControlSend,, +, ahk_id %wowid2%
ControlSend,, +, ahk_id %wowid3%
ControlSend,, +, ahk_id %wowid4%
Return
}

Replace"+" with the button you want it too use. Please post if it works.