home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the DOOM Programming Gurus / Tricks_of_the_Doom_Programming_Gurus.iso / editors / deutex / manual / easy / sprites.txt < prev    next >
Encoding:
Text File  |  1994-11-24  |  1.4 KB  |  40 lines

  1. -----------------------------------------------
  2. How to create a PWAD with new sprites and flats
  3. -----------------------------------------------
  4.  
  5. Beware: sprite replacement is tricky. One false move and
  6. DOOM will lock up. check your work often. Install your PWAD
  7. with DeuSF before trying to play them.
  8.  
  9.  
  10.  
  11. Put your sprites in .\SPRITES as GIF or BMP
  12. Put your Flats in .\FLATS as GIF or BMP
  13. Declare your sprites and flats in WADINFO.TXT in the SPRITES section:
  14. only the name, without .GIF or .BMP extension. (implicit).
  15.  
  16.  
  17. if you replace *ALL* the sprites of DOOM (crazy):
  18. DEUTEX -iwad -make WADINFO.TXT NEWBIE.WAD
  19.   and NEWBIE.WAD is directly usable by doom
  20.  
  21.  
  22. if you replace only some of the sprites of DOOM (better):
  23. DEUTEX -iwad -make WADINFO.TXT NEWBIE.WAD
  24.   It's much smaller, and easier to distribute. but then your PWAD would
  25.   lock-up DOOM on startup. So anyone who want to use it has 3 choices:
  26.     a/  DEUTEX -merge NEWBIE.WAD        
  27.         (modifies DOOM.WAD. but safe and fast )
  28.     b/  DEUSF  -append NEWBIE.WAD        
  29.         (modifies NEWBIE.WAD. safer, but waste some space)
  30.     c/  DEUSF  -add NEWBIE.WAD NEWBIE2.WAD    
  31.         (create NEWBIE2.WAD. the safest, but space wasted)
  32.  
  33. You might wish to add the -sprite command before anything, because
  34. else you'll also inherit of flats!
  35.  
  36. Use in installs: DeuSF -sprite -app NEWBIE.WAD
  37.  
  38. Don't forget that you can only freely distribute DeuSF. There are
  39. restrictions on the distribution of DeuTex.
  40.