Quote Originally Posted by zopal
Be careful, AutoIT is detected by Warden and if you use it, Blizz will ban you...

Then i would have been banned over a year ago. Also, not as if it matters, Warden protects against real hacks, such as injecting, and it can not tell the difference between a real keyboard press and a simulated keyboard press, simply because they are exactly the same.


A sample of the script., just 1 key for size. You copy this into notepad and save it as a .au3 file. When you add the other numbers, make sure the red digits match. 1 hotkeyset for each function.

hotkeyset ("{NUMPAD0}", "alttab0")

Func alttab0()
Send("{ALTDOWN}")
sleep(25)
Send("{TAB}")
sleep(25)
Send("{ALTUP}")
sleep(125)
Send("{0}")
sleep(25)
Send("{ALTDOWN}")
sleep(25)
Send("{TAB}")
sleep(25)
Send("{ALTUP}")
EndFunc

while 1
sleep(1000)
WEnd


I could have done the entire Alt+tab sequence together in the same send, but it was unreliable, working about 3/4th of the time.

AS you can see, it has a total 250 sleep time, which is 1/4 of a second. I would suggest you double the numbers to start with if you think your computer may not be able to handle it.