Can I edit the PinballWickedLauncher.ini or LaunchPinballWicked.ahk to skip the player/mode select menu altogether? I really only want to launch into single player Action mode.
I added this before the SkipNagScreen snippet in the LaunchPinballWicked.ahk to see if I could circumvent the menu with an auto select, but it didn't work so I reverted to my backup. Changed WaitForMenu to 3000.
---------------------------------------------------------------------
;Added by SNAP
;enter key AUTO Single Player Action
SkipModeSelect() {
global KeyDelay
Sleep, %KeyDelay%
Send {Enter down}
Sleep, %KeyDelay%
Send {Enter up}
Sleep, %KeyDelay%
Sleep, 7000
Return
}
;end of SNAP addition
---------------------------------------------------------------------
It's not a game ruiner, still loads just fine but I have to be quick on the enter key after selecting the table or I may miss the 12-sec timer I have the autokey set to. We tend to play single player games at home and let our high scores compete for themselves.