home *** CD-ROM | disk | FTP | other *** search
/ Doom I/II Collection / DM12.ISO / utils / doomm432 / rundemo.bat < prev    next >
DOS Batch File  |  1994-03-18  |  703b  |  29 lines

  1. @echo off
  2. choice "Which episode do you want to run the demo for: " /c:123
  3. if errorlevel 3 goto 3
  4. if errorlevel 2 goto 2
  5. if errorlevel 1 goto 1
  6.  
  7. :1
  8. doom -playdemo seclev1 -nomonsters
  9. goto end
  10. :2
  11. if not exist DOOM.WAD goto no
  12. doom -playdemo seclev2 -nomonsters
  13. goto end
  14. :3
  15. if not exist DOOM.WAD goto no
  16. if exist seclev3.lmp goto 3a
  17. echo.
  18. echo Sorry, the demo for episode 3 was not ready in time for this release.
  19. echo Try again next release.  I'm working on it.
  20. goto end
  21. :3a
  22. rem doom -playdemo seclev3 -nomonsters
  23. goto end
  24. :no
  25. echo.
  26. echo It has been detected that you are using the Sharware version of DOOM.
  27. echo You need to register DOOM in order to use Episodes 2 and 3
  28. :end
  29.