
Originally Posted by
bakadoodle
Here's an easy snippet to add to your AutoIT script so it will stop your bot if you get kicked to the docks.
This assumes 1900x1200 resolution. I can add coordinates for other resolutions if needed.
As an example I'll use @
DanK 's bot which stops itself with the END key, though this could be easily modified to work with whatever you are using.
Add this code somewhere in the loop. I put it after the level skip section because that seems to be where I get kicked most.
This looks to see if the Avatar icon is lit (bottom right corner) which only happens in town.
A variation of this can be used to bot quests with multiple boss levels. I've made a couple for Formorian Base locations, but Sewers is problematic because of ladder sticking.
Thanks bro,very good.
I have a question if I wanted to add the dock protection addon scrip where would I add it?I'm running the
1366x768 res one.
credit to pyrobryant for this script,ok anyone having problem with slower comp edit these entries to this or experiment,also credits to nunya for binds etc......+Helldemon for console..
Global $Paused
HotKeySet("{F10}", "Pause")
HotKeySet("{F9}", "Play")
; Ignore;
While 1
WinWaitActive("Vindictus","")
WEnd
;;
Func Play()
While 1
Sleep(2000)
MouseClick("left",95,627,1) ; Clicks START to launch mission
Sleep(500)
Send("{NUMPAD2}") ; Set this to whatever you bound "host_timescale 3" to. Must be 3 unless you readjust the sleep times.
Sleep(500)
Sleep(16000)
Send("{\}") ; Set this to whatever you bound any sort of Spears to.
Sleep(500)
Send("{f}") ; Activates the aimmer
Sleep(500)
Send("{e}") ; Autolocks to Weeping Queen
Sleep(67000)
MouseClick("left",193,709,1) ; Will click REPLAY on the box showing Earnings/EXP/AP.
Sleep(10000)
WEnd
EndFunc
Func Pause()
$Pause = NOT $Pause
While $Pause
sleep(200)
ToolTip('Script is PAUSED, press F10 to UNPAUSE',0,0)
WEnd
ToolTip("")
EndFunc
I take no credit for this ,just the little tweek I did with the 2000 entry