Tuesday, February 1, 2022

Useful AHK scripts for KOF13 achievement farming

Since KOF has much harder executions than any fighting game franchise, farming achievements can be a pain, especially anything related to Neomax and their cancels. To deal with that, I've written some scripts that will help accelerating achievement grinding. These will come in handy when farming "Do sth X times" or target missions in Arcade mode to unlock Saiki.

Before using, please map your inputs as follow, or you'll need to change the scripts yourself:

LP = F

HP = G

LK = H

HK = J

------------------------------------------------------------------

Now to the scripts. The following are done with Kyo:

;Header

#IfWinActive, ahk_exe kofxiii.exe

#MaxHotkeysPerInterval 999

------------------------------------------------------------------

;Kyo's Max cancel / Facing right; need full drive bar and 3 super bars

SendInput {down down} ;qcb

Sleep 33

SendInput {left down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {down down} ;hcf

Sleep 33

SendInput {left up}

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {g down}

Sleep 33

SendInput {g up}

Sleep 350


SendInput {down down} ;qcf

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {down down} ;qcf

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {f down}{g down}

Sleep 33

SendInput {f up}{g up}

------------------------------------------------------------------

 ;Kyo's command grab / Facing right

SendInput {right down}

Sleep 33

SendInput {down down}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {left down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {left up}

Sleep 33

SendInput {h down}

Sleep 33

SendInput {h up}

------------------------------------------------------------------

 ;Kyo's command grab / Facing left

SendInput {left down}

Sleep 33

SendInput {down down}

Sleep 33

SendInput {left up}

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {h down}

Sleep 33

SendInput {h up}

------------------------------------------------------------------

;Kyo's EX super / Facing right

SendInput {down down} ;qcb

Sleep 33

SendInput {left down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {down down} ;hcf

Sleep 33

SendInput {left up}

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {f down}{g down}

Sleep 33

SendInput {f up}{g up}

------------------------------------------------------------------

;Kyo's EX super / Facing left

SendInput {down down} ;qcb

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {down down} ;hcf

Sleep 33

SendInput {right up}

Sleep 33

SendInput {left down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {left up}

Sleep 33

SendInput {f down}{g down}

Sleep 33

SendInput {f up}{g up}

------------------------------------------------------------------

 ;dp / Facing right

SendInput {right down}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {down down}

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {f down}{g down}

Sleep 33

SendInput {f up}{g up}

------------------------------------------------------------------

 ;dp / Facing left

SendInput {left down}

Sleep 33

SendInput {left up}

Sleep 33

SendInput {down down}

Sleep 33

SendInput {left down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {left up}

Sleep 33

SendInput {f down}{g down}

Sleep 33

SendInput {f up}{g up}

------------------------------------------------------------------

;Drive cancel / Facing right; stand close to opponent

SendInput {f down}

Sleep 33

SendInput {f up}

Sleep 33

SendInput {g down}

Sleep 33

SendInput {g up}

Sleep 100


SendInput {right down} ;dp

Sleep 33

SendInput {right up}

Sleep 33

SendInput {down down}

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {g down}

Sleep 33

SendInput {g up}

Sleep 100


SendInput {down down} ;qcf

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {h down}

Sleep 33

SendInput {h up}

------------------------------------------------------------------

;Drive cancel / Facing left; stand close to opponent

SendInput {f down}

Sleep 33

SendInput {f up}

Sleep 33

SendInput {g down}

Sleep 33

SendInput {g up}

Sleep 100


SendInput {left down} ;dp

Sleep 33

SendInput {left up}

Sleep 33

SendInput {down down}

Sleep 33

SendInput {left down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {left up}

Sleep 33

SendInput {g down}

Sleep 33

SendInput {g up}

Sleep 100


SendInput {down down} ;qcf

Sleep 33

SendInput {left down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {left up}

Sleep 33

SendInput {h down}

Sleep 33

SendInput {h up}

------------------------------------------------------------------

;Kyo's L super / Facing right

SendInput {down down} ;qcb

Sleep 33

SendInput {left down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {down down} ;hcf

Sleep 33

SendInput {left up}

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {right up}

Sleep 33

SendInput {f down}

Sleep 33

SendInput {f up}

------------------------------------------------------------------

;Kyo's L super / Facing left

SendInput {down down} ;qcb

Sleep 33

SendInput {right down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {down down} ;hcf

Sleep 33

SendInput {right up}

Sleep 33

SendInput {left down}

Sleep 33

SendInput {down up}

Sleep 33

SendInput {left up}

Sleep 33

SendInput {f down}

Sleep 33

SendInput {f up}

------------------------------------------------------------------

Let me know if something isn't working. I'll reply once I see your comment.

No comments:

Post a Comment