home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PowerHits - SciFi
/
POWERHITS_SCIFI.iso
/
scifi.bat
< prev
next >
Wrap
DOS Batch File
|
1994-10-06
|
2KB
|
84 lines
:BEGINNING
ECHO OFF
CLS
ECHO Please select the game you would like to play:
ECHO F1 = PROPHECY
ECHO F2 = FATMAN
ECHO F3 = DEATH TRACK
ECHO F4 = CIRCUIT'S EDGE
ECHO F5 = MINES OF TITAN
ECHO F6 = QUIT
ECHO Enter the number of the game you wish to play.
:REPLY
REPLY
IF ERRORLEVEL 64 GOTO QUIT1
IF ERRORLEVEL 63 GOTO MINES
IF ERRORLEVEL 62 GOTO CIRCUIT
IF ERRORLEVEL 61 GOTO DEATH
IF ERRORLEVEL 60 GOTO FATMAN
IF ERRORLEVEL 59 GOTO PROPHECY
GOTO REPLY
:PROPHECY
REM ** This is for 386 computers and below
REM ATSLOW /T????
REM ** This is for 486 computers and higher
REM ATSLOW /T???? /Z
CD PROPHECY
PROPHECY
REM CD..
REM ATSLOW /R
GOTO QUIT
:FATMAN
REM ** This is for 386 computers and below
REM ATSLOW /T????
REM ** This is for 486 computers and higher
REM ATSLOW /T???? /Z
CD FATMAN
FATMAN
REM CD..
REM ATSLOW /R
GOTO QUIT
:DEATH
REM ** This is for 386 computers and below
REM ATSLOW /T????
REM ** This is for 486 computers and higher
REM ATSLOW /T???? /Z
CD DTRACK
DTRACK
REM CD..
REM ATSLOW /R
GOTO QUIT
:CIRCUIT
REM ** This is for 386 computers and below
REM ATSLOW /T????
REM ** This is for 486 computers and higher
REM ATSLOW /T???? /Z
CD CIRCUIT
EDGE
REM CD..
REM ATSLOW /R
GOTO QUIT
:MINES
REM ** This is for 386 computers and below
REM ATSLOW /T????
REM ** This is for 486 computers and higher
REM ATSLOW /T???? /Z
CD TITAN
TITAN
REM CD..
REM ATSLOW /R
GOTO QUIT
:QUIT
CD..
:QUIT1