home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 13 / 1995-12_Disc_13.iso / fifademo / runfifa.bat < prev    next >
DOS Batch File  |  1995-10-04  |  2KB  |  78 lines

  1. cls
  2. :menu
  3. cls
  4. echo off
  5. echo            ╔════════════════════════════════════╗
  6. echo            ║             FIFA '96               ║
  7. echo            ╚════════════════════════════════════╝
  8. echo. 
  9. echo. 
  10. echo        Select Sound Card option below:
  11. echo            0 - NO SOUND
  12. echo            1 - GRAVIS ULTRASOUND
  13. echo            2 - WINDOW SOUND SYSTEM
  14. echo            3 - SOUNDBLASTER
  15. echo            4 - SOUNDBLASTER PRO
  16. echo            5 - SOUNDBLASTER 16
  17. echo            6 - WINDOWS '95 NOTE
  18. echo            7 - E(X)it 
  19. echo. 
  20. echo        Please enter a choice: 0,1,2,3,4,5,6,7
  21. choice /c:01234567x /n
  22. if errorlevel 9 goto end
  23. if errorlevel 8 goto end
  24. if errorlevel 7 goto win95
  25. if errorlevel 6 goto sb16
  26. if errorlevel 5 goto sbpro
  27. if errorlevel 4 goto sb
  28. if errorlevel 3 goto win
  29. if errorlevel 2 goto grav
  30. if errorlevel 1 goto no
  31.  
  32. :no
  33. CALL FIFADEMO 0
  34. goto end
  35.  
  36. :grav
  37. CALL FIFADEMO 1
  38. goto end
  39.  
  40. :win
  41. CALL FIFADEMO 2
  42. goto end
  43.  
  44. :sb
  45. CALL FIFADEMO 3
  46. goto end
  47.  
  48. :sbpro
  49. CALL FIFADEMO 4
  50. goto end
  51.  
  52. :sb16
  53. CALL FIFADEMO 5
  54. goto end
  55.  
  56.  
  57. :win95
  58. echo            ╔═════════════════════════════════════════════╗
  59. echo            ║   We do not suggest you run our PC Gamer CD ║
  60. echo            ║   through Windows '95. But if you are, it   ║ 
  61. echo            ║   is recommended that you DO NOT attempt    ║
  62. echo            ║   to run FIFA from within WINDOWS '95.      ║
  63. echo            ║                                             ║
  64. echo            ║   For best results, exit to DOS mode and    ║
  65. echo            ║   manually run the game (and our CD).       ║
  66. echo            ║                                             ║
  67. echo            ║   The executable command can be found in    ║
  68. echo            ║   D:\FIFADEMO directory (where "D:" is the  ║
  69. echo            ║   letter of your CD-ROM drive). The game's  ║
  70. echo            ║   executable command is FIFADEMO.           ║
  71. echo            ╚═════════════════════════════════════════════╝
  72. echo
  73. echo off
  74. pause
  75. goto menu
  76.  
  77. :end
  78.