PDA

View Full Version : Winarcadia -anyone have a working script?



guyverjay
05-27-2011, 02:27 AM
Thanks in advance

brolly
05-27-2011, 05:54 AM
I'm assuming you want to run arcadia 2001, if it's any other system you need to change the MACHINE value on the script.

else if (systemName = "Arcadia 2001" && executable = "wa.exe")
{
hideDesktop()
tmpFile = %emuPath%Configs\%romName%.cfg
if FileExist(tmpFile)
{
cfgFile = %romName%.cfg
} else
{
cfgFile = WA.CFG
}
RunWait, %executable% MACHINE=ARCADIA SETTINGS="%cfgFile%" FULLSCREEN=ON STRETCH=ON FILE="%romPath%%romName%%romExtension%", %emuPath%
}

This allows you to have a unique config per game, just create a config file with the same name of the rom and put it on the emu's configs dir.

guyverjay
05-27-2011, 06:09 AM
Thanks Brolly, you rule