Supermodel 3 Emulator How to Run Games and Make a Menu
Arcade usb Joystick on Amazon link: https://amzn.to/2Ril2g2
On website, I have a complete list of emulator videos from arcade emulators to console emulators.
https://he-1000-1975.com/video-directory/#B
Format to write supermodel 3 game batch file
del drive:\filepath\nvram\romname.nv
drive:\filepath\supermodel.exe romname.zip -parameters
del drive:\filepath\error.log
save notepad to all files, and as a .bat file.
Sample batch file to run supermodel 3 emulator
@echo off
del D:\Emulator\SupermodelEmu\nvram\scudplus.nv
D:\Emulator\SupermodelEmu\supermodel.exe scudplus.zip -res=1024,768 -fullscreen
del D:\Emulator\SupermodelEmu\error.log
Menu
You have to change the echo part if you want to add more stuff to the menu.
Here you can change the number if you want to add more roms into the menu. Let's say I add one more game, I will have to change LEQ to 6. This way I can call another batch file. Also add Item_5, and put all the commands under it .
set /p s=Please make a selection and press enter:
if %s% leq 5 (
goto Item_%s%
) else (
goto start
)
Call function
:Item_2 -[Selection in the menu]
d: - [Your hard drive letter where your batch file is at]
cd "D:\Emulator\SupermodelEmu" -[cd (change directory) "drive:\filepath"
call von2b.bat -[call enables you to run a batch file that you already created. If the batch file has spaces, you would put call "Street fighter.bat". Quotations will have to be used.
goto start -[After the selection is made and the file runs, it will go back to start or the beginning of the program]
Sample menu file:
@echo off
:start
cls
echo select 0 to exit program
echo select 1 Star Wars Trilogy Arcade
echo select 2 Vitual On Arcade
echo select 3 Virtual Fighter 3 Arcade
echo select 4 Scud Race Arcade
echo select 5 Sega Rally 2 Arcade
echo.
set /p s=Please make a selection and press enter:
if %s% leq 5 (
goto Item_%s%
) else (
goto start
)
:Item_0
exit
:Item_1
d:
cd "D:\Emulator\SupermodelEmu"
call "Swtrilgy.bat"
goto start
:Item_2
d:
cd "D:\Emulator\SupermodelEmu"
call von2b.bat
goto start
:Item_3
d:
cd "D:\Emulator\SupermodelEmu"
call VF3.bat
goto start
:Item_4
d:
cd "D:\Emulator\SupermodelEmu"
call Scudrace.bat
goto start
:Item_5
d:
cd "D:\Emulator\SupermodelEmu"
Call srally2x.bat
goto start
save all of this into your notepad, change the drive settings associated with the batch file settings, save it as all files, and save it as a batch file.
Links
How to Run Star Wars Trilogy Arcade on the Supermodel3 Emulator
https://www.youtube.com/watch?v=R4t_pQP82jU
Site for Supermodel 3 compatibility list
http://www.planetemu.net/roms/supermodel
Official Supermodel 3 Emulator Site
https://www.supermodel3.com/
You can check out my other emulator videos at
https://he-1000-1975.com/emulators/
Other Videos By Ace1000ks1975
Other Statistics
Scud Race Statistics For Ace1000ks1975
There are 8,125 views in 1 video for Scud Race. Less than an hour worth of Scud Race videos were uploaded to his channel, making up less than 0.01% of the total overall content on Ace1000ks1975's YouTube channel.