home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :start
- cls
- echo.
- echo Welcome to Savage Empire
- echo.
- echo.
- echo Choose one of the selections below:
- echo.
- echo 1. RUN Savage Empire.
- echo 2. INSTALL changes hardware configuration, and creates new character.
- echo Note: (MCGA/VGA graphics should be selected, not EGA or TANDY)
- echo 3. QUIT.
- echo.
- echo Please enter the number for your choice; Enter 1-3 only.
- query
-
- if errorlevel = 4 goto invalid
- if errorlevel = 3 goto end
- if errorlevel = 2 goto reset
- if errorlevel = 1 goto run
-
- :invalid
- cls
- echo Invalid option
- goto start
- goto end
-
- REM Run game
- :run
- savage.exe
- goto end
-
- REM reconfig setup
- :reset
- cls
- install.exe
- goto start
- goto end
- :end
-