home *** CD-ROM | disk | FTP | other *** search
/ Ultimate DOOM Companion / PowersourceMultimedia-UltimateDOOMCompanion.iso / levels_d / escape2.zip / SLOP.BAT < prev    next >
DOS Batch File  |  1994-08-04  |  2KB  |  67 lines

  1. @echo off
  2. cls
  3. if not exist doom.exe goto nodoomexe
  4. if not exist escape\dehacked.exe goto nodehackexe
  5. if not exist escape\escape.deh goto noslopdeh
  6. if "%1"=="" goto noarg
  7. if "%1"=="on" goto on
  8. if "%1"=="ON" goto on
  9. if "%1"=="off" goto off
  10. if "%1"=="OFF" goto off
  11. :noarg
  12. echo This batch file installs the escape.deh patch.
  13. echo To blow chunks out of cadavers with a "hype" chain gun type:
  14. echo.
  15. echo slop on
  16. echo.
  17. echo A backup patch file will be saved and this patch file will be activated.
  18. echo To restore your old conifguration of DOOM.EXE type:
  19. echo.
  20. echo slop off
  21. echo.
  22. echo I hope this makes DOOM a little more enjoyable. 
  23. echo Now go kick some ass.  "Huh, huh, you said 'ASS'" "Cool out, Beavis."
  24. echo.
  25. echo.
  26. echo.
  27. echo.
  28. echo Questions/ Comments? E-mail me at jpb9951@zeus.tamu.edu
  29. goto end
  30. :nodoomexe
  31. echo ERROR: You're screwed!  DOOM.EXE is not present!
  32. echo This batch file must be run in the DOOM directory
  33. goto end
  34. :nodehackexe
  35. echo ERROR: DEHACKED.EXE is not present.
  36. echo You must have DEHACKED to use the Slop patch file.
  37. echo If you don't have it you can download it at infant2.sphs.indiana.edu
  38. echo under pub/doom/wad_edit/doomhack,  file dhaked13.zip by Tree.
  39. goto end
  40. :noslopdeh
  41. echo ERROR: ESCAPE.DEH seems to be missing
  42. echo You don't have the patch file ESCAPE.DEH?  
  43. echo This batch file, ESCAPE.DEH, and DOOM.EXE and DEHACKED must all be in the
  44. echo same directory, preferably the DOOM directory.
  45. goto end
  46. :on
  47. escape\dehacked -save escape\doomorg.deh
  48. escape\dehacked -load escape\escape.deh
  49. cls
  50. echo ESCAPE.DEH has been installed successfully!  
  51. echo Go beat the hell out of those cadavers!
  52. echo The Chain Gun now fires twice as fast and holds twice as many rounds!  
  53. echo.
  54. goto end
  55. :off
  56. if not exist escape\doomorg.deh goto nobkup
  57. escape\dehacked -load escape\doomorg.deh
  58. cls
  59. echo The Escape.deh hack has been removed...
  60. echo I guess it's too bloody for you, huh?
  61. echo.
  62. goto end
  63. :nobkup
  64. echo ERROR: Can't find DOOMORG.DEH
  65. echo The copy of your original original dehacked .cfg seems to have vanished.
  66. :end
  67.