Page 1 of 1

Yabuse script

Posted: Tue Apr 28, 2015 11:51 am
by Seiya
i try in saturn gamebase this script but don't start emulator.
i mount games in daemon tools so, i use "E:" like virtual CD.

i modified this line:

Code: Select all

Add_CLP(-a -b %emupath%/ubios.bin -c e:)
run_emulator()
yabuse.ini is in the same dir of emulator.

from gamebase script mount virtualcd, but don't start. Instead if i start manually it it works very well][/code]

Posted: Thu Apr 30, 2015 7:34 pm
by .mad.
Yabuse can just run the ISO or CD image, you do not need to mount it to the virtual drive for it to work.

Code: Select all

Add_CLP (-a -b %emupath%/MBIOS.BIN -i "%gamepathfile%")
Run_Emulator()
For Yabuse to read the virtual drive, you will first need to tell Daemons to mount the image to the virtual dive in the script.
before your command line.

Code: Select all

; Remove Previous Attached CD Image.
Run_Program(%dbpath%\DTLite\DTLite.exe||-unmount_All||WAIT)

; Attach CD Image (Cue File).
Run_Program(%dbpath%\DTLite\DTLite.exe||-mount 0, "%gamepathfile%"||WAIT)
But i would just use the first option. :wink: