home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Killer
/
Game_Killer.bin
/
086.TESTWARE.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-02-12
|
859b
|
42 lines
echo off
:start
cls
echo F-117A Stealth Fighter
echo.
echo TESTWARE (UK) LTD 46 the Avenue, Harrogate, N. Yorks
echo Don't forget to print off the Control Sheet if you haven't done so
echo already!
echo.
echo Please choose ...
echo.
echo 1 Play F-117A
echo.
echo 2 Print the Control Sheet
echo.
echo 3 Quit to DOS
choice 123
if errorlevel 3 goto stop
if errorlevel 2 goto printer
cls
demo
goto stop
:printer
cls
echo.
echo IMPORTANT: in order to print the documentation the printer must be
echo connected up and switched on.
echo.
echo Press "c" to continue .... or "q" to quit ...
choice CcQq
if errorlevel 4 goto start
if errorlevel 3 goto start
echo.
echo The documentation is now being printed ...
copy controls.txt prn
echo >prn
echo.
echo Printing completed
goto start
:stop
cls