This is the autoIt script I've been running with it all day. Started at 11, now at 41 on my Witch Doctor, only using the Grasp of the Dead ability set to your right click, if you have a ranged snare, set it to right click. Run the script, hit 'Resume Game' to load into D3, hit the - key, and let it do it's work. It's set up to that even if you die, it will leave, and rejoin the game and continue. It slows down the bot as a whole, but it's more efficient than having the script error out randomly. Page UP pauses the script, Page DOWN ends the script.
(This is for 1920x1080. The D3 window MUST be your active window, don't bother running it without having the D3 window as your active window. This means you can't do anything on the computer while it's running, unfortunately. I *CAN* change this if someone can get ahold of the ControlID for Diablo 3 in AutoIt. I haven't been able to yet.)
The ranged ability that snares/
Code:
Global $Paused
HotKeySet("-", "Leave") ;script can be stopped by pressing -
HotKeySet("{PGUP}", "Pause") ;script can be stopped by pressing -
HotKeySet("{PGDN}", "Stop")
$go = True
$Leave = False
While $go
if($Leave) Then
Send("{space}")
MouseClick("left", 1587, 878)
Sleep(2000)
MouseClick("right", 1717, 852)
Sleep(2000)
MouseClick("left", 299, 35)
Sleep(4000)
Send("{Escape}")
MouseClick("left", 956, 579)
Sleep(13000)
MouseClick("left", 230, 416)
Sleep(6000)
EndIf
WEnd
Func Pause()
$Leave = False
EndFunc
Func Stop() ;to allow the script to stop
Exit
EndFunc
Func Leave()
$Leave = True
EndFunc