home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Select: Games Special 5
/
SPSP5.bin
/
dosgames
/
skyworkr
/
sky.bat
< prev
next >
Wrap
DOS Batch File
|
1994-11-24
|
541b
|
18 lines
echo off
cls
if exist ..\sky.bat erase ..\sky.bat
if "%1" == "SOUND" goto new_sound
if "%1" == "sound" goto new_sound
if "%1" == "Sound" goto new_sound
if exist PSMCFG4.DAT goto play_game
:new_sound
psmcfg4.exe
if exist PSMCFG4.DAT goto play_game
echo ┌────────────────────────────────────────────────────────────────┐
echo │Bevor Sie spielen können, müssen Sie eine Soundkarte einstellen!│
echo └────────────────────────────────────────────────────────────────┘
goto endof_bat
:play_game
game.exe %1 %2 %3 %4 %5
:endof_bat