Skip to content

Instantly share code, notes, and snippets.

@primaryobjects
Last active December 3, 2023 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save primaryobjects/68db4c8727510c915b25caa2e2e8e734 to your computer and use it in GitHub Desktop.
Save primaryobjects/68db4c8727510c915b25caa2e2e8e734 to your computer and use it in GitHub Desktop.
AutoIt script to automatically level up a magic spell in Final Fantay II on PSX (PS1) in the psxfin emulator.

Final Fantasy II - Auto Level Up Keyboard Trick

Automated level-up script for Final Fantasy II.

Final Fantasy II automatic trick to level-up magic spells and attacks by command cancel.

What is it?

An AutoIt script to automatically press the keyboard keys in a particular sequence to execute the level-up trick for attacks and magic spells in the game Final Fantasy II on the Playstation 1 emulator.

This script works by simulating the keyboard pressing the keys to select Attack, Magic, etc. repeatedly in a loop. This will allow you to level up your characters attacks and spells.

Uses the PS1 game emulator psxfin for Final Fantasy II in Final Fantasy Origins.

References

https://gamefaqs.gamespot.com/nes/563414-final-fantasy-ii/faqs/3013

;
; AutoIt script to automatically level up a magic spell in Final Fantay II on PSX (PS1).
;
#include <Constants.au3>
Opt("SendKeyDownDelay", 20)
$count = 10
; Wait for the window to become active.
If WinActivate("pSX v1.13") Then
For $i = 1 to $count
SplashTextOn("Final Fantasy II - Level Up Trick", "Performing action " & $i & "/" & $count, 300, 100, 800, 800, $DLG_MOVEABLE)
Send("z")
Sleep(200)
Send("z")
Sleep(200)
Send("{DOWN}")
Sleep(200)
Send("z")
Sleep(200)
Send("{DOWN}")
Sleep(200)
Send("{DOWN}")
Sleep(200)
Send("z")
Sleep(200)
Send("z")
Sleep(200)
Send("s")
Sleep(200)
Send("s")
Sleep(200)
Send("s")
Sleep(200)
Send("s")
Sleep(200)
Next
EndIf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment