home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 086.TESTWARE.BAT < prev    next >
DOS Batch File  |  1993-02-12  |  859b  |  42 lines

  1. echo off
  2. :start
  3. cls
  4. echo                               F-117A Stealth Fighter
  5. echo.
  6. echo TESTWARE (UK) LTD 46 the Avenue, Harrogate, N. Yorks
  7. echo Don't forget to print off the Control Sheet if you haven't done so
  8. echo already!
  9. echo.
  10. echo Please choose ...
  11. echo.
  12. echo 1 Play F-117A
  13. echo.
  14. echo 2 Print the Control Sheet
  15. echo.
  16. echo 3 Quit to DOS
  17. choice 123
  18. if errorlevel 3 goto stop
  19. if errorlevel 2 goto printer
  20. cls
  21. demo
  22. goto stop
  23. :printer
  24. cls
  25. echo.
  26. echo IMPORTANT: in order to print the documentation the printer must be
  27. echo connected up and switched on.
  28. echo.
  29. echo Press "c" to continue .... or "q" to quit ...
  30. choice CcQq
  31. if errorlevel 4 goto start
  32. if errorlevel 3 goto start
  33. echo.
  34. echo The documentation is now being printed ...
  35. copy controls.txt prn
  36. echo   >prn
  37. echo.
  38. echo Printing completed
  39. goto start
  40. :stop
  41. cls
  42.