home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 342.img / IRONMAN1.ZIP / IRONMAN.BAT < prev    next >
DOS Batch File  |  1990-08-13  |  624b  |  47 lines

  1. echo off
  2. cls
  3. echo.
  4. echo        Ironman's Super Offroad Racer
  5. echo.
  6. echo.
  7. echo    Please select video card:
  8. echo.
  9. echo    1. CGA
  10. echo    2. EGA 16 Color (Normal)
  11. echo    3. EGA 64 Color (Switchable 64 color monitors only)
  12. echo    4. VGA
  13. echo    5. Tandy 1000
  14.  
  15. :KeyLoop
  16. readkey
  17. if errorlevel 5 goto Tandy
  18. if errorlevel 4 goto VGA
  19. if errorlevel 3 goto EGA64
  20. if errorlevel 2 goto EGA16
  21. if errorlevel 1 goto CGA
  22. goto KeyLoop
  23.  
  24. :CGA
  25. game /cga
  26. goto END
  27.  
  28. :EGA16
  29. game /ega16
  30. goto END
  31.  
  32. :EGA64
  33. game /ega64
  34. goto END
  35.  
  36. :VGA
  37. game /vga
  38. goto END
  39.  
  40. :Tandy
  41. game /tandy
  42.  
  43. :END
  44. echo.
  45. echo    Thankyou for playing Offroad Racer
  46.  
  47.