home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 1995 May
/
pcw-0595.bin
/
dosmenu.bat
next >
Wrap
DOS Batch File
|
1995-03-09
|
3KB
|
212 lines
@echo off
:start
cls
echo PCW INTERACTIVE - QUICK DOS MENU
echo"
echo"
echo This Dos menu system is here for readers who don't have (or don't use) Windows.
echo It is also needed for some games that refuse to run correctly from within
echo Windows.
echo"
echo"
echo"
echo"
echo"
echo"
echo"
echo"
echo"
echo"
echo"
echo"
echo"
echo"
echo"
echo Use the cursor keys and Return to select and run an option, or press Escape to
echo return to Dos. Please don't try to run this batch file from Windows as it
echo defeats the whole object and won't work properly anyway.
:menu1
\system\getopt "Select an option:" Cyberwar "Dark Forces" Discworld Startrek "-- More --"
if errorlevel=5 goto menu2
if errorlevel=4 goto startrek
if errorlevel=3 goto disc
if errorlevel=2 goto dark
if errorlevel=1 goto cyber
goto exit
:menu2
\system\getopt "Select an option:" "Laser Lights" "Mah Jongg" "Dr. Riptide" ShadowForce "-- More --"
if errorlevel=5 goto menu3
if errorlevel=4 goto shadow
if errorlevel=3 goto riptide
if errorlevel=2 goto mahjongg
if errorlevel=1 goto laslight
goto exit
:menu3
\system\getopt "Select an option:" "Shooting Gallery" "Starmines 2" "Wrath of Earth" "Cover Disk" "-- More --"
if errorlevel=5 goto menu1
if errorlevel=4 goto cover
if errorlevel=3 goto wrath
if errorlevel=2 goto star
if errorlevel=1 goto shoot
goto exit
:cover
cls
cd \covdisk
command /c pcw
echo"
echo Press any key to continue...
pause >nul
cd \
dosmenu
:cyber
cls
cd \demos\cyberwar\install
install
echo"
echo Press any key to continue...
pause >nul
cd \
dosmenu
:dark
cls
cd \demos\darkfrcs
echo DARK FORCES
echo"
echo Type one of the following, depending on your CD-Rom drive:
echo"
echo CD D
echo CD E
echo CD F
echo CD G
echo CD H
echo"
echo Then enter:
echo"
echo DFDEMO
echo"
goto exit2
:disc
cls
cd \demos\discwrld
dwb
echo"
echo Press any key to continue...
pause >nul
cd \
dosmenu
:startrk
cls
cd \demos\startrek\25thanni
install
go to exit2
:laslight
cls
cd \sharewre\games\laslight
ll
echo"
echo Press any key to continue...
pause >nul
cd \
dosmenu
:mahjongg
cls
cd \sharewre\games\mahjongg
mahjongg
echo"
echo Press any key to continue...
pause >nul
cd \
dosmenu
:riptide
cls
cd \sharewre\games\riptide
riptide -pcsound
echo"
echo Press any key to continue...
pause >nul
cd \
dosmenu
:shadow
cls
cd \sharewre\games\shadow
command /c sforce
echo"
echo Press any key to continue...
pause >nul
cd \
dosmenu
:shoot
cls
cd \sharewre\games\shootgal
shoot
echo"
echo Press any key to continue...
pause >nul
cd \
dosmenu
:wrath
cls
cd \sharewre\games\wrath
woe
echo"
echo Press any key to continue...
pause >nul
mode co80
cd \
dosmenu
:star
cls
cd \sharewre\games\starmine
sm2
echo"
echo Press any key to continue...
pause >nul
cd \
dosmenu
:exit
cls
echo Goodbye from PCWI...
echo"
:exit2