Here is a script for Autoit that will allow you to auto-grind AFK with your hunter.
sleep(3000)
While 1 = 1
;keep pressing backspace until a target is aqquired
while PixelGetColor(626,121) <> 0x111095
send("{BACKSPACE}")
Sleep(random(1,2)*1000)
WEnd
;while target is aqquired
;also check to see if target is out of range by seeing if it has looped more than 100 times
$i = 0
while PixelGetColor(626,121) = 0x111095 AND $i <> 100
;use swift bow
send(4)
Sleep(random(1,2)*1000)
;use quickshot
send(1)
Sleep(random(1,2)*1000)
$i += 1
WEnd
;check to see if health is full
While PixelGetColor(381,79) <> 0x2CE30E
Sleep(random(1,2)*1000)
WEnd
WEnd
================================================== ============
To run this script correctly please ensure you follow the directions below:
- Place your swift bow in slot 4, quickshot in slot 1.
- Turn off "auto run to target" in game options.
- Find a non aggressive (no auto attack) mob you wish to farm. Stand in "ranged" range of the mob.
The script continually searches for a target, and once it finds it spams swift bow/quickshot until it's dead. After the mob is dead, it will not attack again until your health is full. Have fun!
sleep(3000)
While 1 = 1
;keep pressing backspace until a target is aqquired
while PixelGetColor(626,121) <> 0x111095
send("{BACKSPACE}")
Sleep(random(1,2)*1000)
WEnd
;while target is aqquired
;also check to see if target is out of range by seeing if it has looped more than 100 times
$i = 0
while PixelGetColor(626,121) = 0x111095 AND $i <> 100
;use swift bow
send(4)
Sleep(random(1,2)*1000)
;use quickshot
send(1)
Sleep(random(1,2)*1000)
$i += 1
WEnd
;check to see if health is full
While PixelGetColor(381,79) <> 0x2CE30E
Sleep(random(1,2)*1000)
WEnd
WEnd
================================================== ============
To run this script correctly please ensure you follow the directions below:
- Place your swift bow in slot 4, quickshot in slot 1.
- Turn off "auto run to target" in game options.
- Find a non aggressive (no auto attack) mob you wish to farm. Stand in "ranged" range of the mob.
The script continually searches for a target, and once it finds it spams swift bow/quickshot until it's dead. After the mob is dead, it will not attack again until your health is full. Have fun!