home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 1 / ClassicFond01.iso / role-pla / ravenlof.zip / RLOFT.BAT < prev    next >
DOS Batch File  |  1994-04-03  |  3KB  |  77 lines

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