Paddy1888 Posted 3 hours ago Posted 3 hours ago Good Morning all, I posted this here as the troubleshooting section states Launchbox and this is not a Launchbox issue. I have a script which should launch a game (which it does) and Demulshooter (which it doesn't) and I can't figure for the life of me why it's not working I don't suppose any of the experts can provide me a pointer as to why it doesn't start ; AutoHotkey Script for Sega Chihiro (Ghostquad) with DemulShooter ; executable paths demulshooterPath := "D:\All-in-One\Emulators\DemulShooter\DemulShooter.exe" cxbxPath := "D:\All-in-One\Emulators\Sega Chihiro\cxbx.exe" xbeFile := "D:\All-in-One\LaunchBox\Games\Sega Chihiro\GS\vsg.xbe" ; Launch DemulShooter Run, %demulshooterPath% DemulShooter.exe -target=chihiro -rom=vgs, , Hide ; Wait for DemulShooter to initialize Sleep, 2000 ; Launch CXBX-Reloaded with the game Run, %cxbxPath% "%xbeFile%", , Hide Esc:: Process, Close, DemulShooter.exe Process, Close, cxbx.exe ExitApp return Quote
JoeViking245 Posted 5 minutes ago Posted 5 minutes ago 3 hours ago, Paddy1888 said: provide me a pointer as to why it doesn't start You're doubling up the exe. The Run line essentially says: Run, "D:\All-in-One\Emulators\DemulShooter\DemulShooter.exe" DemulShooter.exe -target=chihiro -rom=vgs, , Hide Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.