home *** CD-ROM | disk | FTP | other *** search
/ Classic Collection - Adventure & Fantasy / CLASS211.bin / swt / bill / copyfile.swt / SWTGAME.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-11-18  |  1.2 KB  |  65 lines

  1. @echo off
  2. :start
  3. cls
  4. echo.
  5. echo          Welcome to Bill & Ted's  Excellent Adventure.
  6. echo.
  7. echo It is strongly advised that you print out the Circuits of Time  
  8. echo before attempting to play the game.  This information is crucial 
  9. echo to playing the game and is made available to you by selecting 
  10. echo option 2.
  11. echo.
  12. echo Please choose one of the selections below:
  13. echo.
  14. echo     1. Run Bill & Ted's Excellent Adventure Now!
  15. echo     2. Print Circuits of Time  (Via PRINT bill&ted.txt)
  16. echo     3. Setup configuration for Joystick(s).
  17. echo     4. Run game without Sound Card (PC speaker).
  18. echo     5. Quit
  19. echo.
  20. echo     Please enter the number for your choice;
  21. query
  22.  
  23. if errorlevel = 6 goto choice
  24. if errorlevel = 5 goto end
  25. if errorlevel = 4 goto nosound      
  26. if errorlevel = 3 goto set
  27. if errorlevel = 2 goto print
  28. if errorlevel = 1 goto run
  29.  
  30. :choice
  31. echo Unavailable choice.
  32. goto start
  33. goto end
  34.  
  35. REM Run bill&ted
  36. :run
  37. bt.exe
  38. echo.
  39. goto end
  40.  
  41. REM Run without sound
  42. :nosound
  43. BT N
  44. echo.
  45. goto end
  46.  
  47.  
  48. REM Setup bill&ted
  49. :set
  50. btconfig.com
  51. echo.
  52. goto start
  53. goto end
  54.  
  55. REM Print Circits of Time
  56. :print
  57. cls
  58. echo.
  59. echo Ready printer and
  60. pause
  61. print bill&ted.txt
  62. goto start
  63.  
  64. :end
  65.