So, I've learned that if checkpoints don't show up doing what's shown in the image repeatedly will eventually make every checkpoint populate the list. I made a razer macro that does it, but I wrote a small AutoHotkey Script that does it repeatedly so non razer users can use it as well. To use simply put the cursor over the three dots shown in the image by Kitty Ai and hold capslock until all your checkpoints populate the list. The script only works while UF is active so capslock works normally while it's inactive. I've commented everything so you know exactly what the script is doing.
To use it, download AutoHotkey Version 1, make a new text file, open in notepad and paste the following code and save it and then change the file extension from new file.txt to new file.ahk and run it.
Code |
---|
#SingleInstance, Force
#Persistent
CapsLock:: ;You can replace Capslock with any key just replace every Capslock with the same key.
;End|Home|ScrollLock|F1-F24|NumLock| These are some example replacement keys.
;All Text In Front Of ; Is A Comment Explaining What The Code Does In An ELI5 Way
IfWinActive, ahk_exe UltraForge.exe ;Checks If UltraForge Is Active - If Not Caps Works As Normal
{
SetKeyDelay, 25
;Sets Key Delay To 25MS |1000 = 1 Second| This Prevents Lag - Increase If Needed - Decrease If Your PC Is Fast
CLD:=GetKeyState("CapsLock", "P")
;CLD Is A 0 or 1 Variable That Detects If Capslock Is Up Or Down 0 = Up 1 = Down
;ToolTip, Capslock State = %CLD%, A_ScreenWidth/2, 0 ;ToolTip At Top Center - Remove ; To Show ToolTip
If(CLD = 1) ;If The CLD Variable Equals 1 | Down Then It Does The Following Action Repeatedly Until Released
{
Send, {LButton} ;Sends Key Listed
Send, {Down 5}
Send, {Right}
Send, {Enter}
Send, {LButton}
Send, {Down 5}
Send, {Right}
Send, {Down}
Send, {Enter}
}
Return ;Returns To Check If Caps Is Still Pressed
}
Send, {CapsLock Down} ;If UF Is Inactive This Makes Caps Work As Normal
KeyWait, CapsLock, Up
Send, {CapsLock Up}
Return
|
This will speed up adding a large library of checkpoints by 100s of times.
FF12 Environment Library By Valhalla - Go From ~10ish Built-in FFENVs To 327 FFENVs! mediafire.com/folder/5mof7pqxvs0fr/FFENV
Current Rig: AMD TR 3970X 32C|64T 4.5GHz CPU - Nvidia 24GB RTX 3090 GPU -128GB Ram And Two 4TB M.2s.