Skip to content

Instantly share code, notes, and snippets.

@JonathanLafey
Last active May 30, 2023 04:21
Show Gist options
  • Save JonathanLafey/13abee23d3abb5217f9232f83dd0cff9 to your computer and use it in GitHub Desktop.
Save JonathanLafey/13abee23d3abb5217f9232f83dd0cff9 to your computer and use it in GitHub Desktop.
Final Fantasy 8 - Disc 3 - Max Gil Automation
; REQUIREMENTS:
; 1. Install https://www.autohotkey.com/
; 2. Make sure you have all the Tonberry's shop abilities
; 3. Make sure that you have the "Esthar Shop!!!"
; 4. Have the 3 first slots on your inventory empty and no stock of Tent, Cottage or Mega-Potion.
; 5. Review the steps and adjust the Up or Down repetitions if the position of your abilities or the amount of shops differ.
; HOW TO RUN:
; Start from the "Call Shop" ability with the "Esthar Shop!!!" selected
; Run this script with ctrl + j
^j::
; Loop for as many times as you require
Loop, 1
{
Sleep, 1000
SetKeyDelay, 50, 50
Send, {x down}{x up}
Sleep, 1000
;SetKeyDelay, 100, 100
Send, {x down}{x up}
Sleep, 500
;SetKeyDelay, 100, 100
Send, {Right down}{Right up}
Sleep, 100
; Navigate to Tents
Loop, 5
{
Send, {Down down}{Down up}
}
; Buy 100 Tents
Send, {x down}{x up}
Loop, 10
{
Send, {Up down}{Up up}
}
Send, {x down}{x up}
; Navigate to Cottage
Sleep, 100
Send, {Down down}{Down up}
; Buy 100 Cottages
Send, {x down}{x up}
Loop, 10
{
Send, {Up down}{Up up}
}
Send, {x down}{x up}
; Exit the shop and got to Recov Med-RF
Sleep, 100
Loop, 3
{
Send, {c down}{c up}
Sleep, 500
}
Send, {Right down}{Right up}
Sleep, 100
Loop, 3
{
Send, {Up down}{Up up}
}
Send, {x down}{x up}
Sleep, 1000
; Refine the Tents and Cottages to Mega-Potions
Send, {x down}{x up}
Sleep, 200
Loop, 3
{
Send, {Down down}{Down up}
}
Send, {x down}{x up}
Sleep, 200
Send, {Down down}{Down up}
Sleep, 200
Send, {x down}{x up}
Loop, 5
{
Send, {Down down}{Down up}
}
Send, {x down}{x up}
Sleep, 200
; Go to Call Shop
Send, {c down}{c up}
Sleep, 1000
Send, {Left down}{Left up}
Sleep, 200
Loop, 3
{
Send, {Down down}{Down up}
}
Send, {x down}{x up}
Sleep, 200
Send, {x down}{x up}
Sleep, 500
Send, {Right down}{Right up}
Sleep, 100
Send, {x down}{x up}
Sleep, 500
; Sell the Mega-Potions
Loop, 2
{
Send, {Down down}{Down up}
}
Send, {x down}{x up}
Loop, 8
{
Send, {Up down}{Up up}
}
Send, {x down}{x up}
Send, {c down}{c up}
Sleep, 300
Send, {c down}{c up}
; End of transaction
}
Return
@JonathanLafey
Copy link
Author

REQUIREMENTS

  1. Install AutoHotKey
  2. Make sure you have all the Tonberry's shop abilities
  3. Make sure that you have visited the Esthar Shop!!!
  4. Have the 3 first slots on your inventory empty and no stock of Tent, Cottage or Mega-Potion.
  5. Review the steps and adjust the Up or Down repetitions if the position of your abilities or the amount of shops differ.
  6. Optional: Review and change the loop number in line 15 to whatever is repetition count is most preferable for you

HOW TO RUN

    1. Start from the Call Shop ability with the Esthar Shop!!! selected
    1. Run this script with ctrl + j

@Perustaja
Copy link

BTW you can also press F5 and it will give you the option for automatic max gil

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment