home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 17 / cdrt17.iso / pc / dosend / bat / speedtxt.bat < prev   
DOS Batch File  |  1995-09-09  |  1KB  |  58 lines

  1.  
  2. rem call getdrive
  3. echo off
  4. cls
  5.  
  6. echo    ***********************************************
  7. echo                  TO START THE GAME
  8. echo    ***********************************************
  9. ECHO  -
  10. echo  To start the game, simply type the letter corresponding
  11. echo  to your soundcard below:
  12. echo  ************************
  13. echo  -
  14. echo  1) SOUND BLASTER & COMPATIBLES        **  type "A"
  15. echo  -
  16. echo  2) SOUND BLASTER AWE                  **  type "B"
  17. echo  -
  18. echo  3) GRAVIS ULTRASOUND                  **  type "C"
  19. echo  -
  20. echo  4) WINDOW SOUND SYSTEM & COMPATIBLES  **  type "D"
  21. echo  -
  22. echo  5) NO SOUND                           **  type "E"
  23. echo  *******************************************************
  24. choice /c:abcde /n
  25. if errorlevel 5 goto dos5
  26. if errorlevel 4 goto dos4
  27. if errorlevel 3 goto dos3
  28. if errorlevel 2 goto dos2
  29. if errorlevel 1 goto dos1
  30.  
  31.  
  32.  
  33. :dos5
  34. SET %x=e
  35. goto cdrt
  36.  
  37. :dos4
  38. SET %x=d
  39. goto cdrt
  40.  
  41. :dos3
  42. SET %x=c
  43. goto cdrt
  44.  
  45. :dos2
  46. SET %x=b
  47. goto cdrt  
  48.  
  49. :dos1
  50. SET %x=a
  51. goto cdrt  
  52.  
  53. :cdrt
  54. call run%x%
  55.  
  56.  
  57. :end
  58.