home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
WADS of WADS
/
WadsOfWads.1994.zip
/
WADS
/
S_Z
/
TORCHED.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-07-15
|
490b
|
24 lines
@echo off
set slevel=
cls
echo.
echo.
echo.
echo Type a number for skill level desired or Q to quit.
echo.
choice /c:1234Q "Which Skill Level Would You Like To Play :"
if errorlevel 1 set slevel=1
if errorlevel 2 set slevel=2
if errorlevel 3 set slevel=3
if errorlevel 4 set slevel=4
if errorlevel 5 goto quit
doom -file torched.wad -skill %slevel%
goto end
:quit
echo.
echo Batch file terminated.
echo.
echo.
:end
set slevel=