IngKara Script [Auto-it]
Why is this script different from the other IngKara releases?
#1- It kills the boss with small bombs getting the bonus mission. (extra 1500 gold)
#2- It attempts to mine the ore vein during the wait for exp screen time. (it most likely will not get all of them much of the time, but it has a pretty good rate of getting most of them)
#3- It attempts to gather the erg drops during this wait time as well. (usually only grabs one or two of them, but one extra drop to sell is better then standing still for 30 seconds)
#4- It is commented very well so you know what's going on in the script at all times and it's easy to make modifications too for that reason.
#5- It's designed to be complimented by my .hfs mods.
It will work best and be the least effort if you use these .hfs
NEEDED BINDS
MUST HAVE HFS MODS
Without further wait, the script:
HOME TO START
END TO END
#1- It kills the boss with small bombs getting the bonus mission. (extra 1500 gold)
#2- It attempts to mine the ore vein during the wait for exp screen time. (it most likely will not get all of them much of the time, but it has a pretty good rate of getting most of them)
#3- It attempts to gather the erg drops during this wait time as well. (usually only grabs one or two of them, but one extra drop to sell is better then standing still for 30 seconds)
#4- It is commented very well so you know what's going on in the script at all times and it's easy to make modifications too for that reason.
#5- It's designed to be complimented by my .hfs mods.
It will work best and be the least effort if you use these .hfs
Code:
ezBossX_ep7 http://www.mpgh.net/forum/267-vindictus-hacks/293960-ezbossx_ep7.html My PermBinds ep7 http://www.mpgh.net/forum/267-vindictus-hacks/293997-my-perm-binds-ep7.html
NEEDED BINDS
Code:
plr_move_speed_barehand 1000 (you should not use armor or weapon) changemap_to_next_random_sector cc_set_sub_weapon handbomb_lvl2 999 hand_bomb_detonate_by_throw_delay 0.1 cc_set_sub_weapon mining_bomb 999 mining_bomb_detonate_by_throw_delay 0.1
Code:
Transform on emote or unlimited transform. One hit kill handbomb with extended range. Extended range mining bombs. Instant Core_Search/Item_pickup.
HOME TO START
END TO END
Code:
#region ---Au3Recorder generated code Start ---
Opt("WinWaitDelay",100)
Opt("WinDetectHiddenText",1)
Opt("MouseCoordMode",0)
Global $boatbot
HotKeySet("{HOME}", "start")
HotKeySet("{END}", "stop")
While 1
sleep ( 1 )
WEnd
; -------- Functions -------------------
Func start()
$boatbot = Not $boatbot
While $boatbot
_WinWaitActivate("Vindictus","")
;click start boat
MouseClick("left",98,935,1)
;wait for map to load
sleep( 30000 )
; Numpadsub is my hotkey for skip to next map sector.
; You can do all 3 skip sectors during one loading screen.
Send("{NUMPADSUB}")
;wait for next sector to load
sleep ( 100 )
Send("{NUMPADSUB}")
;wait for next sector to load
sleep ( 100 )
Send("{NUMPADSUB}")
;wait for next sector to load
sleep ( 10000 )
; F7 is to transform paladin (to get the path points and INVICIBILITY--IMPORTANT!)
sleep ( 500 )
send("{F7}")
sleep ( 500 )
;{NUMPADMULT} is my keybind for speed (need barehand speed at 1000 if your naked
;which is preferred since your armor will break and you will end up that way)
send("{NUMPADMULT}")
sleep( 500 )
;7 is my keybind for handbombs
Send("7")
sleep ( 500 )
;run to cutscene
;we need to sidestep to prevent getting stuck on a wall
send("{a down}")
Sleep ( 200 )
send("{a up}")
sleep ( 550 )
;run forward down the hall
send("{w down}")
sleep ( 8000 )
send("{w up}")
;need to wait a bit before attempting to exit cutscene BUGGY GAME!
sleep ( 5000 )
;exit cutscene
send("{ESC}")
;wait for control back to character
sleep ( 5000 )
;FOR SOME STUPID REASON SOMETIMES U GOTTA WALK INTO THE RED WALL TO SPAWN THE BOSS FUCKING BUGGY ASS GAME!!!!
send("{d down}")
sleep ( 1500 )
send("{d up}")
sleep ( 100 )
;boss should be guaranteed to be spawned, go back to our spot now
send("{a down}")
sleep ( 800 )
send("{a up}")
sleep ( 100 )
;pull out the hand bomb
Send("f")
sleep ( 1500 )
;throw the handbomb
MouseClick("left",960,540,1)
sleep ( 25000 )
;switch to mining bomb 8 is key for mining bomb
send("8")
;pull out the mining bomb
Send("f")
sleep ( 1500 )
;throw the mining bomb
MouseClick("left",960,540,1)
sleep ( 1500 )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;; in this block we are attempting to get the ores
send("{w down}")
sleep ( 850 )
send("{w up}")
sleep ( 100 )
send("e")
sleep ( 500 )
send("e")
sleep ( 500 )
send("{w down}")
sleep ( 550 )
send("{w up}")
sleep ( 100 )
send("e")
sleep ( 500 )
send("e")
sleep ( 500 )
send("{d down}")
sleep ( 500 )
send("{d up}")
sleep ( 100 )
send("e")
sleep ( 500 )
send("e")
sleep ( 500 )
send("{d down}")
sleep ( 500 )
send("{d up}")
sleep ( 100 )
send("e")
sleep ( 500 )
send("e")
sleep ( 500 )
;get off the wall
send("{s down}")
sleep ( 200 )
send("{s up}")
sleep ( 100 )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; end of getting ores
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; now this block attempts to pick up the erg drops
send("{a down}")
sleep ( 2000 )
send("{a up}")
sleep ( 100 )
send("e")
sleep ( 500 )
send("e")
sleep ( 500 )
send("{a down}")
sleep ( 500 )
send("{a up}")
sleep ( 100 )
send("e")
sleep ( 500 )
send("e")
sleep ( 500 )
send("{a down}")
sleep ( 500 )
send("{a up}")
sleep ( 100 )
send("e")
sleep ( 500 )
send("e")
sleep ( 500 )
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; end of erg pickup attempt
;wait extra for battle complete screen *I often lag here.
sleep ( 50000 )
;click replay boat
MouseClick("left",199,700,1)
;wait for boat to load
sleep ( 20000 )
;starting the loop over now
WEnd
EndFunc ;=== end of the bot function
Func _WinWaitActivate($title,$text,$timeout=0)
WinWait($title,$text,$timeout)
If Not WinActive($title,$text) Then WinActivate($title,$text)
WinWaitActive($title,$text,$timeout)
EndFunc
Func stop()
Exit
EndFunc ;==>stop

Nunya has plenty of blood boiling already.