home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :start
- cls
- echo.
- echo Welcome to Bill & Ted's Excellent Adventure.
- echo.
- echo It is strongly advised that you print out the Circuits of Time
- echo before attempting to play the game. This information is crucial
- echo to playing the game and is made available to you by selecting
- echo option 2.
- echo.
- echo Please choose one of the selections below:
- echo.
- echo 1. Run Bill & Ted's Excellent Adventure Now!
- echo 2. Print Circuits of Time (Via PRINT bill&ted.txt)
- echo 3. Setup configuration for Joystick(s).
- echo 4. Run game without Sound Card (PC speaker).
- echo 5. Quit
- echo.
- echo Please enter the number for your choice;
- query
-
- if errorlevel = 6 goto choice
- if errorlevel = 5 goto end
- if errorlevel = 4 goto nosound
- if errorlevel = 3 goto set
- if errorlevel = 2 goto print
- if errorlevel = 1 goto run
-
- :choice
- echo Unavailable choice.
- goto start
- goto end
-
- REM Run bill&ted
- :run
- bt.exe
- echo.
- goto end
-
- REM Run without sound
- :nosound
- BT N
- echo.
- goto end
-
-
- REM Setup bill&ted
- :set
- btconfig.com
- echo.
- goto start
- goto end
-
- REM Print Circits of Time
- :print
- cls
- echo.
- echo Ready printer and
- pause
- print bill&ted.txt
- goto start
-
- :end
-