home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 5 / ClassicFond05_nopass.iso / ROLE-PLA / PROPHET.RAR / PROPHET.BAT < prev    next >
DOS Batch File  |  1995-02-14  |  3KB  |  80 lines

  1. @echo off
  2.  
  3. rem --------------------------------------------------------------------------
  4. rem .   game.bat
  5. rem .
  6. rem .    This is a batch file to load the Gravis Ultrasound in Native mode.
  7. rem .   And start the game...
  8. rem .
  9. rem .    Author:     Ralph Thomas
  10. rem .
  11. rem .   Revision:       1.0    1/24/94
  12. rem .            1.1    2/7/94  Fixed to accomodate the loadpats
  13. rem .                                   program detecting the GUS software
  14. rem .                                   revision...
  15. rem --------------------------------------------------------------------------
  16.  
  17. rem Detect card
  18.  
  19. IF "%ULTRADIR%"=="" goto NO_GRAVIS
  20. GOTO GUS_LOAD
  21.  
  22. :GUS_LOAD
  23.  
  24. rem --------------------------------------------------------------------------
  25. rem If loadpats fails it means that the user has an old revision of the Gravis
  26. rem software and will need to contact Gravis for an update to make this work...
  27. rem --------------------------------------------------------------------------
  28.  
  29. loadpats
  30. IF ERRORLEVEL 1 GOTO OLD_REVISION
  31.  
  32. goto RUN_GRAVIS
  33.  
  34. :OLD_REVISION
  35.  
  36. rem --------------------------------------------------------------------------
  37. rem Set the environmental var to NULL so the sound installer will not "detect"
  38. rem the Gravis
  39. rem --------------------------------------------------------------------------
  40.  
  41. set ULTRASND=
  42.  
  43. cls
  44. echo ╔═════════════════════════════════════════════════════╗
  45. echo ║       Gravis Native Mode Installation Error         ║
  46. echo ╠═════════════════════════════════════════════════════╣
  47. echo ║                                                     ║
  48. echo ║  ERROR: Native Mode is not Supported by Revisions   ║
  49. echo ║         of the Gravis Software Less Then 2.00       ║
  50. echo ║                                                     ║
  51. echo ║         Contact Gravis to Obtain an Update of       ║
  52. echo ║         Their Software...                           ║
  53. echo ║                                                     ║
  54. echo ║          Voice (604) 431-5020                       ║
  55. echo ║          Fax   (604) 431-5155                       ║
  56. echo ║          BBS   (604) 431-5927 V32bis                ║
  57. echo ║                                                     ║
  58. echo ║          Compuserve: GO PCVENB (71333,350)          ║
  59. echo ║          FidoNET: 1:153/978                         ║
  60. echo ║          InterNET EMail: tech@gravis.com            ║
  61. echo ║          SBCNET: 13:900/3                           ║
  62. echo ║                                                     ║
  63. echo ╚═════════════════════════════════════════════════════╝
  64. pause
  65. GOTO NO_GRAVIS
  66.  
  67. :RUN_GRAVIS
  68. cls
  69. sp.exe
  70. goto END
  71.  
  72. :NO_GRAVIS
  73. cls
  74. sp.exe
  75. goto END
  76.  
  77. :END
  78.  
  79. 
  80.