Trampled Hero script
finally finished it, this script uses your sp skill to kill the boss so youll need any hack that let you spam your sp skill.
You will also need HFS paper mod.Use pointercoord from my BL update if your res isnt the same as mine.
Fionas and evies might need to edit the sleep numbers a little so grav and shield charge kill the boss.
You will also need HFS paper mod.Use pointercoord from my BL update if your res isnt the same as mine.

Code:
Global $Pause
HotKeySet("{F10}", "Pause")
HotKeySet("{F9}", "Trampled")
While 1
WinWaitActive("Vindictus","")
WEnd
Func Trampled()
While 1
Sleep(1000)
MouseClick("left",95,627,1) ; Clicks START to launch mission
Sleep(500)
Send("{8}") ; set your key bound to host_timescale 3
Sleep(10000)
Send("{7}") ; set your key bound to changelevel 2
Sleep(10000)
Send("{7}") ; set your key bound to changelevel 2
Sleep(10000)
Send("{7}") ; set your key bound to changelevel 2
Sleep(7000)
Send("{w down}") ; Will move forward.
Sleep(6000)
Send("{w up}")
Send("{n}") ; set your key bound to ai_reaction_delay_idle 99999
Send("{m}") ; set your key bound to ai_reaction_delay_alert 99999
Sleep(3000)
Send("{z down}") ; this will use your SP skill
Sleep(68000) ; This is the time it takes until the Mission Successful menu shows up.
MouseClick("left",193,709,1) ; Will click REPLAY on the box showing Earnings/EXP/AP.
Sleep(20000)
WEnd
EndFunc
Func Pause()
$Pause = NOT $Pause
While $Pause
sleep(100)
ToolTip('Script is PAUSED, press F10 to UNPAUSE',0,0)
WEnd
ToolTip("")
EndFunc