home *** CD-ROM | disk | FTP | other *** search
/ Classic Collection - Adventure & Fantasy / CLASS211.bin / swt / savage / copyfile.swt / SWTGAME.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-10-26  |  739 b   |  41 lines

  1. @echo off
  2. :start 
  3. cls
  4. echo.
  5. echo               Welcome to Savage Empire
  6. echo.
  7. echo.
  8. echo  Choose one of the selections below:
  9. echo.
  10. echo     1. RUN Savage Empire. 
  11. echo     2. INSTALL changes hardware configuration, and creates new character.
  12. echo           Note: (MCGA/VGA graphics should be selected, not EGA or TANDY)
  13. echo     3. QUIT.
  14. echo.
  15. echo     Please enter the number for your choice;   Enter 1-3 only.
  16. query
  17.  
  18. if errorlevel = 4 goto invalid
  19. if errorlevel = 3 goto end
  20. if errorlevel = 2 goto reset
  21. if errorlevel = 1 goto run
  22.  
  23. :invalid
  24. cls
  25. echo Invalid option
  26. goto start
  27. goto end
  28.  
  29. REM Run game   
  30. :run
  31. savage.exe
  32. goto end
  33.  
  34. REM reconfig setup
  35. :reset
  36. cls
  37. install.exe
  38. goto start
  39. goto end 
  40. :end
  41.