home *** CD-ROM | disk | FTP | other *** search
/ WADS of WADS / WadsOfWads.1994.zip / WADS / A_F / NEWGUN.BAT < prev    next >
DOS Batch File  |  1994-08-04  |  1KB  |  38 lines

  1. @echo off
  2. if not exist doom.exe goto nodoomexe
  3. if not exist escape\dmadds.exe goto nodmadds
  4. if not exist escape\rawwepon.wad goto norawwepon
  5. echo This batch file converts the raw weapon file for
  6. echo the chain gun into a useable wad.  It'll come out to be about 2 megs.
  7. echo.
  8. echo.
  9. echo I hope this makes DOOM a little more enjoyable. 
  10. echo Now go kick some ass.  "Huh, huh, you said 'ASS'" "Cool out, Beavis."
  11. echo.
  12. pause
  13. goto starts
  14. :nodoomexe
  15. echo ERROR: You're screwed!  DOOM.EXE is not present!
  16. echo This batch file must be run in the DOOM directory
  17. goto end
  18. :nodmadds
  19. echo ERROR: DMADDS.EXE is not present in the \doom\escape directory...
  20. echo You must have DMADDS to use the new weapon.
  21. echo If you don't have it you can download it at infant2.sphs.indiana.edu.
  22. goto end
  23. :norawwepon
  24. echo ERROR: RAWWEPON.WAD seems to be missing from the \doom\escape...
  25. echo You don't have the patch wad RAWWEPON.WAD?  
  26. echo This batch file, RAWWEPON.WAD, and DMADDS.EXE must be in the
  27. echo escape directory under doom (i.e. \doom\escape\)
  28. goto end
  29. :starts
  30. escape\dmadds escape\rawwepon.wad escape\chaingun.wad
  31. cls
  32. echo The new weapon has been installed successfully!  
  33. echo The Chain Gun fires twice as fast now and holds twice as many rounds!  
  34. echo Through testing we determined the chain gun fires 200 rounds in 23 
  35. echo seconds.  The new chain gun fires 200 rounds in 11 seconds!!!
  36. goto end
  37. :end
  38.