home *** CD-ROM | disk | FTP | other *** search
/ Ultimate DOOM Companion / PowersourceMultimedia-UltimateDOOMCompanion.iso / levels_c / simpson2.zip / SIMPSONS.BAT < prev    next >
DOS Batch File  |  1995-02-08  |  1KB  |  36 lines

  1. @echo off
  2. REM Simpsons DOOM2 by Steve Blauwkamp and Chuck Fuoco
  3. REM     Auto-install, Auto-run batch file
  4. if "%1"=="?" goto help
  5. if "%1"=="install" goto install
  6. goto run
  7.  
  8. :help
  9. echo Usage:  simpsons -install
  10. echo    to complete the simpsons graphics files correctly
  11. echo Usage:  simpsons "doom2_arguments"
  12. echo    to run doom using the simpsons sounds and graphics
  13. echo    where "doom2_arguments" are your normal DOOM2 arguments(i.e. -respawn)
  14. goto end
  15.  
  16. :run
  17. REM NOTE: Uncomment the dehacked lines if you wish to use the dehacked
  18. REM     patch included, for doom 2 v1.666.
  19. REM dehacked -save simptemp.deh
  20. REM dehacked -load simpsons.deh
  21.  
  22. REM edit the next line if you wish to use Doom I rather than Doom II
  23. doom2 -file simp2spr.wad simp2gfx.wad simp2snd.wad %1 %2 %3 %4 %5
  24.  
  25. REM NOTE:  Uncomment the next two lines for the dehacked patch as well
  26. REM dehacked -load simptemp.deh
  27. REM del simptemp.deh
  28. goto end
  29.  
  30. :install
  31. echo Completing simp2spr.wad...
  32. nwt -as simp2spr.wad
  33. echo Simpsons DOOM 2 ready to go.
  34. echo Just type "simpsons" to get her started.
  35. :end
  36.