FINAL FANTASY IX

FINAL FANTASY IX

View Stats:
Nightheaven Jun 16, 2021 @ 10:53pm
2
Hippaul racing script
Hi everyone, I have edit the autohotkey script for the Hippaul racing minigame. User interface is added so this script is user friendly.
First, go to https://www.autohotkey.com/ to download and install autohotkey
Second, in your computer, create an autohotkey script
Third, copy and paste the following script to your computer:
a = k
b = m

Gui, -MaximizeBox
Gui, -MinimizeBox
Gui, Color, c535770, c6272a4
Gui, Font, c11f s9 Bold
Gui, Add, Text,, Run key I
Gui, Add, Edit, w40 vA, %a%
Gui, Add, Text,, Run key II
Gui, Add, Edit, w40 vB, %b%
Gui, Add, Button, x10 y100 gSaveVars, Save
Gui, Add, Text,, Enter the key for running
Gui, Add, Text,, Press save button to setup the key
Gui, Add, Text,, Hold the mouse left button to run
Gui, Show,w260 h200, Vivi Hippaul Racing
return

SaveVars:
Gui, Submit
GuiControlGet, a, , A
GuiControlGet, b, , B


~$LButton::
While GetKeyState("LButton", "P"){
Sleep 30
SendInput {%a% down}
Sleep 30
SendInput {%a% up}
Sleep 30
SendInput {%b% down}
Sleep 30
SendInput {%b% up}
}
return

^Esc::ExitApp

Forth: run both FF9 and the script, talk to the hippo mother to start the match, hold the left click mouse button to run
< >
Showing 1-3 of 3 comments
Gui Feb 28, 2022 @ 12:00pm 
I haven't tried it but fiddling with AutoHotKey seems to fit my personal development journey better than smashing my keyboard
Last edited by Gui; Feb 28, 2022 @ 12:00pm
Nova Oct 4, 2023 @ 2:46pm 
thank you so much it works perfectly!
cbcbcbcbcbcbcbcbcbcbcb -> the proof! haha
Darkling Oct 4, 2023 @ 8:44pm 
Originally posted by Nightheaven:
Hi everyone, I have edit the autohotkey script for the Hippaul racing minigame. User interface is added so this script is user friendly.
First, go to https://www.autohotkey.com/ to download and install autohotkey
Second, in your computer, create an autohotkey script
Third, copy and paste the following script to your computer:
a = k
b = m

Gui, -MaximizeBox
Gui, -MinimizeBox
Gui, Color, c535770, c6272a4
Gui, Font, c11f s9 Bold
Gui, Add, Text,, Run key I
Gui, Add, Edit, w40 vA, %a%
Gui, Add, Text,, Run key II
Gui, Add, Edit, w40 vB, %b%
Gui, Add, Button, x10 y100 gSaveVars, Save
Gui, Add, Text,, Enter the key for running
Gui, Add, Text,, Press save button to setup the key
Gui, Add, Text,, Hold the mouse left button to run
Gui, Show,w260 h200, Vivi Hippaul Racing
return

SaveVars:
Gui, Submit
GuiControlGet, a, , A
GuiControlGet, b, , B


~$LButton::
While GetKeyState("LButton", "P"){
Sleep 30
SendInput {%a% down}
Sleep 30
SendInput {%a% up}
Sleep 30
SendInput {%b% down}
Sleep 30
SendInput {%b% up}
}
return

^Esc::ExitApp

Forth: run both FF9 and the script, talk to the hippo mother to start the match, hold the left click mouse button to run
Thank you, I will use this.
Last edited by Darkling; Oct 4, 2023 @ 8:45pm
< >
Showing 1-3 of 3 comments
Per page: 1530 50

Date Posted: Jun 16, 2021 @ 10:53pm
Posts: 3