home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / deutex1b.zip / EXAMPLE / ANIM.BAT next >
DOS Batch File  |  1994-09-15  |  406b  |  19 lines

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