home *** CD-ROM | disk | FTP | other *** search
/ MegaDoom Add-On 3 / MEGADOOM3.iso / dm2wads / dtepis3 / start.bat < prev   
DOS Batch File  |  1994-10-26  |  480b  |  23 lines

  1. @echo off
  2. set wad=DTEPIS3.wad
  3. if not exist doom.exe goto nogame
  4. if not exist %wad% goto nowad
  5. if exist doom1.wad goto shareware
  6. cls
  7. @doom -file %wad%
  8. goto end
  9. :nogame
  10. cls
  11. echo Please run this program in your DOOM Directory
  12. goto end
  13. :nowad
  14. cls
  15. echo Couldn't find %wad%.  Make sure it is in your Doom Directory.
  16. goto end
  17. :shareware
  18. cls
  19. echo This appears to be a shareware copy of DOOM.  This wad file only works
  20. echo with the Registered Version.
  21. :end
  22. set wad=
  23.