home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / r / rexneb.zip / REX.BAT < prev    next >
DOS Batch File  |  1992-06-27  |  2KB  |  75 lines

  1. @echo off
  2.  
  3. rem
  4. rem     REX NEBULAR -- demo disk driver batch file
  5. rem
  6. rem     by Brian Reynolds       14-Jun-92
  7. rem
  8.  
  9. set mads=
  10. call setsnd.bat
  11.  
  12. :loopdemo
  13. cls
  14. echo ***************************************************
  15. echo *    REX NEBULAR and the Cosmic Gender Bender     *
  16. echo * Copyright (c) 1992 by MicroProse Software, Inc. *
  17. echo ***************************************************
  18. echo * "REX"         Runs full demo once               *
  19. echo * "REX GAME"    Runs game demo only               *
  20. echo * "REX LOOP"    Loop opening demo (no ESC key)    *
  21. echo ***************************************************
  22. echo Loading REX NEBULAR demonstration...
  23.  
  24. if "%1" == "loop" goto noesc
  25. if "%1" == "LOOP" goto noesc
  26. echo (Press ESC key at any time to exit).
  27.  
  28. :noesc
  29.  
  30. pauses
  31. if errorlevel 1 goto nomem
  32.  
  33. animview %mpslabs% @labslogo.res
  34.  
  35. if "%1" == "game" goto game
  36. if "%1" == "GAME" goto game
  37.  
  38. if "%1" == "LOOP" goto next
  39. if "%1" == "loop" goto next
  40.  
  41. if errorlevel 1 goto done
  42.  
  43. :next
  44. echo Loading REX NEBULAR opening demo...
  45. animview %mpslabs% @demodisk.res
  46. if "%1" == "LOOP" goto loopdemo
  47. if "%1" == "loop" goto loopdemo
  48.  
  49. if errorlevel 1 goto done
  50.  
  51. :game
  52. echo Loading REX NEBULAR game demo...
  53. nebular -p -k %mpslabs%
  54.  
  55. :done
  56. cls
  57. echo REX NEBULAR and the Cosmic Gender Bender
  58. echo    Coming in Fall 1992 to a software
  59. echo       store near you! -- Look out!
  60.  
  61. goto stop
  62.  
  63. :nomem
  64. cls
  65. echo You do not have enough free memory to run the REX NEBULAR
  66. echo demo.  You must have at least 575,000 bytes of free memory
  67. echo (as shown by the CHKDSK or MEM command) in order to view
  68. echo the demo.  Usually, easiest way to free up memory is to
  69. echo remove "TSR" programs from your AUTOEXEC.BAT file.  We are
  70. echo very sorry for the inconvenience.
  71.  
  72. :stop
  73. set mpslabs=
  74.  
  75.