home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 11 / 1995-10_Disc_11.iso / nfs / runnfs.bat < prev    next >
DOS Batch File  |  1995-07-31  |  1KB  |  54 lines

  1. echo off
  2. cls
  3. echo.
  4. echo    ╔══════════════════════════════════════════╗
  5. echo    ║    Need for Speed runs directly from     ║
  6. echo    ║    your CD-ROM drive.                    ║
  7. echo    ║                                          ║
  8. echo    ║    Select the sound card option that     ║
  9. echo    ║    best suites your system.              ║
  10. echo    ╚══════════════════════════════════════════╝
  11. echo.
  12. echo    1. No Sound
  13. echo    2. Sound Blaster or Compatible
  14. echo    3. Sound Blaster AWE
  15. echo    4. Gravis Ultrasound  (including MAX)
  16. echo    5. Windows Sound System or Compatible
  17. echo    X. Exit
  18. echo.
  19. echo    Enter Choice:
  20. echo    Type CTRL-C to exit
  21. choice /c:12345X /n
  22. if errorlevel 6 goto dos6
  23. if errorlevel 5 goto dos5
  24. if errorlevel 4 goto dos4
  25. if errorlevel 3 goto dos3
  26. if errorlevel 2 goto dos2
  27. if errorlevel 1 goto dos1
  28.  
  29. :dos6
  30. goto end
  31.  
  32. :dos5
  33. CALL RUNWSS.BAT
  34. goto end
  35.  
  36. :dos4
  37. CALL RUNGUS.BAT
  38. goto end
  39.  
  40. :dos3
  41. CALL RUNAWE.BAT
  42. goto end
  43.  
  44. :dos2
  45. CALL RUNSB.BAT
  46. goto end
  47.  
  48. :dos1
  49. CALL NOSOUND.BAT
  50. goto end
  51.  
  52.  
  53. :END
  54.