home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2.6 / 1996-07_Disc_2.6.bin / doom2 / critpath.bat < prev    next >
DOS Batch File  |  1996-01-17  |  397b  |  18 lines

  1. @echo off
  2. echo Loading Critical Path...
  3.  
  4. if not exist critpath.wad goto no_wad
  5. if not exist doom2.wad goto no_doom
  6. doom2  -file critpath.wad
  7. goto end
  8.  
  9. :no_wad
  10. echo Critical Path is not available! Make sure it's in your Doom directory.
  11. goto end
  12.  
  13. :no_doom
  14. echo DOOM2.WAD is not available! You must have critpath.wad and 
  15. echo critpath.bat in your Doom2 directory to run them.
  16.  
  17. :end
  18.