Hi,
First test with only 2 tables and it's working but definitely need adjustement for the timing of the "send command".
I use this ahk for inspiration on how to navigate automaticly in the menu :
37Pinball FX2.txt
But It works randomly and launch the wrong table half time. Need to spend time on it.
Good things : hyperpin's Backglass stay on second screen when playing on table and i love it, they're beautiful ( I toke them on
pinsimdb http://www.pinsimdb....-60-pinball_fx2 ).
Think i'll not come back on my pincab next 2 week to have this 37 tables working individually with mediapack...
because of holiday, It's Snowboard time for now.
Have you tried with NukeLauncher? http://www.nukelaunc...item.asp?iid=13
When properly configured, I am able to get every table to run by command line. My problem now is to get it to work in Hyperpin!
Any one could help? I will post my NukeLauncher.ini and PinballFX2.xml file as soon as I can!
I changed the original PinballFX2 code with the following :
if (systemName = "Future Pinball") {
if (tableName = "BigScore") { ; bigboss slamit bigscore support
GoSub SlamitBigScore
} else if (tableName = "PinballFX2") { ; modified bigboss routine for Pinball FX2
GoSub PinballFX2
} else if (tableName = "ThePinballArcade") { ; modified bigboss routine for Pinball Arcade
GoSub PinballArcade
} else if (tableName = "TheWalkingDead") { ; modified bigboss routine for Pinball FX2
GoSub TheWalkingDead
}else {
GoSub bigbossfp ; bigboss support for different exe
; modified big boss bigscore routine for PinballFX2 - Sir Cheddar
TheWalkingDead:
RegRead, SteamDirPath, HKLM, Software\Valve\Steam, InstallPath
toLog("PinballFX2 Called")
;Hotkey, $%exitKey%, CloseFX2
;Hotkey, $%exitKey1%, CloseFX2
;- Modify your ShowBackGlass command line options for FX2 here
IfExist %steamdirpath%\images\ShowBackglass.exe
IfExist %steamdirpath%\images\gui2.pxp.bmp
Run, ShowBackglass.exe /left=1916 /top=-4 /width=1928 /height=1088 /picture=gui2.pxp.bmp ,%SteamDirPath%\images
Run, "%SteamDirPath%\batch\TWD.bat",,UseErrorLevel
Process, wait, Pinball FX2.exe
Gui, destroy
Process, WaitClose, Pinball FX2.exe
IfExist %steamdirpath%\images\appkiller.exe
Run, %SteamDirPath%\Images\appkiller.exe ShowBackglass.exe 0,,UseErrorLevel
goto ExitScript
return
CloseFX2:
toLog("CloseFX2 Called")
Process,Close,Pinball FX2.exe
Process, WaitClose, Pinball FX2.exe
IfExist %steamdirpath%\images\appkiller.exe
Run, %SteamDirPath%\Images\appkiller.exe ShowBackglass.exe 0,,UseErrorLevel
goto ExitScript
return
Here is the content of my batch file
@echo off
"C:\Program files (x86)\steam\NukeLauncher.exe" "The Walking Dead"
When I run the batch file, everythink works fine.
When I start if from Hyperpin. It starts PinballFX2 but doesn't go to start The Walking Dead table.
Edited by dricher, 23 December 2014 - 08:00 PM.