home *** CD-ROM | disk | FTP | other *** search
/ Doom I/II Collection / DM12.ISO / edit / deusf / anim.bat next >
DOS Batch File  |  1994-10-09  |  432b  |  22 lines

  1. echo off
  2. echo MAKING anim.wad
  3.  
  4. echo DeuTex must be in your path
  5. echo for instance:   copy deutex.exe c:\dos
  6. pause
  7. rem goto end
  8.  
  9. :deutex
  10. if exist \doom\doom.wad goto doit
  11. if exist \doom2\doom2.wad goto doit
  12.  
  13. echo ERROR: doom.wad  not found in \doom  directory
  14. echo        doom.2wad not found in \doom2 directory
  15. pause
  16. goto end
  17.  
  18. :doit
  19. deutex  -make wadinfo.txt anim.wad
  20. echo TO PLAY:
  21. echo doom -file anim.wad
  22. :end