home *** CD-ROM | disk | FTP | other *** search
/ Instant Doom Levels / Instant.Doom.Levels.-.Level.Master.II.iso / WADS / DOOM1 / PATCHES / MEGADETH / LASEROFF.BAT < prev    next >
DOS Batch File  |  1994-10-15  |  888b  |  41 lines

  1. @echo off
  2. if not exist dmgraph.exe goto dmgrapherror
  3. if not exist *.gif goto nogifs
  4. if not exist doom.wad goto nowad
  5. if exist doom.wad goto start
  6. :dmgrapherror
  7. cls
  8. echo ERROR: DMGRAPH.EXE cannot be found in current directory.
  9. echo .
  10. echo             A B O R T I N G
  11. goto end
  12. :nogifs
  13. cls
  14. echo ERROR: No *.GIF files found in current directory.
  15. echo .
  16. echo             A B O R T I N G
  17. goto end
  18. :nowad
  19. cls
  20. echo ERROR: DOOM.WAD not found in current directory.
  21. echo .
  22. echo             A B O R T I N G
  23. goto end
  24. :start
  25. @echo off
  26. dmgraph chgga0 -s chainold.gif -i -104,-117
  27. dmgraph shtga0 -s shotold.gif -i -98,-108
  28. dmgraph pisga0 -s pistold.gif -i -126,-106
  29. del chainold.gif
  30. del shotold.gif
  31. del pistold.gif
  32. cls
  33. echo .
  34. echo .
  35. echo        * * *   LASER SIGHTS DE-ACTIVATED   * * *
  36. echo .
  37. echo .
  38. echo Created for   M E G A D E T H    by J S Hayre
  39. echo .
  40. :end
  41.