home *** CD-ROM | disk | FTP | other *** search
/ Ultimate DOOM Companion / PowersourceMultimedia-UltimateDOOMCompanion.iso / levels_e / hockey10.zip / PATCH.BAT < prev    next >
DOS Batch File  |  1994-04-10  |  565b  |  22 lines

  1. @Echo Off
  2. Echo Patching to run Doom Hockey!
  3. Echo To switch back to normal Doom,
  4. Echo run this AGAIN, and we swap it back
  5. Echo by copying normal.exe back to doom.exe
  6. if not exist doom.exe goto error
  7. if exist normal.exe goto back
  8. Echo Copying Doom.exe to normal.exe
  9. copy doom.exe normal.exe
  10. Echo Patching for Hockey Doom! Godmode ON! 
  11. hack.exe patch.hky doom.exe > nul
  12. goto end
  13. :back
  14. echo Swapping back to Normal Doom
  15. del doom.exe
  16. copy normal.exe doom.exe
  17. del normal.exe
  18. goto end
  19. :error
  20. Echo Please apply this patch from your DOOM directory
  21. :end
  22.