t-poz Posted December 26, 2021 Share Posted December 26, 2021 Hey guys, I am trying to create a .bat file to run GameLoader All RH emulator but cannot get it to work properly. When I launch the "Game Loader All RH.exe" the game works fine on my arcade machine, but because each game is it's own .exe file, I am trying to create a .bat to point to the individual. exe based on the game selection (this is something similiar to what I've seen done for Daphne). The idea is to create an empty .txt for each game as my 'rom' file - example "Akai Katana Shin.txt" In my .bat (which I would use as me LB executable, I have the following: @echo_off if %1 == "Akai Katana Shin" goto akaikatanashin :akaikatanashin "E:\Taito_Nesica\Akai Shin Katana\Game Loader All RH.exe" goto end :end To test, If I just try to run the .bat with the "E:\Taito_Nesica\Akai Shin Katana\Game Loader All RH.exe", it asks to run as admin, and when I click 'yes' nothing happens. Again, if I run the "Game Loader All Rh.exe" from within the Akai Shin Katana folder, everything boots up successfully and I can play the game with proper resoultion and controls for my arcade cabinet. I know the "Game loader All RH,exe" points to the "game.exe" for this game, but when updating my .bat to use the "game.exe", I have issues with screen resolution and controls since they are setup through GLARH. I also cannot use TeknoParrot due to screen resolution issues, as well as I do not use RocketLauchner (colpipes tutorial). Thoughts? Thanks! Quote Link to comment Share on other sites More sharing options...
JoeViking245 Posted December 27, 2021 Share Posted December 27, 2021 12 hours ago, t-poz said: Thoughts? Since the games "rom" is a text file with the same name as the games folder, and they all use "Game Loader All RH.exe" to launch (both deduced assumptions)... @echo off cd "E:\Taito_Nesica\%1" start "" "Game Loader All RH.exe" Quote Link to comment Share on other sites More sharing options...
t-poz Posted December 27, 2021 Author Share Posted December 27, 2021 That worked - thanks!!! 1 Quote Link to comment Share on other sites More sharing options...
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.