home *** CD-ROM | disk | FTP | other *** search
/ GCW Games & More & Wacky Windows Companion / gcw.iso / doom / starwar / sprites.txt < prev    next >
Encoding:
Text File  |  1994-11-04  |  1.4 KB  |  39 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.
  7.  
  8.  
  9.  
  10. Put your sprites in .\SPRITES as GIF or BMP
  11. Put your Flats in .\FLATS as GIF or BMP
  12. Declare your sprites and flats in WADINFO.TXT in the SPRITES section:
  13. only the name, without .GIF or .BMP extension. (implicit).
  14.  
  15.  
  16. if you replace *ALL* the sprites of DOOM (crazy):
  17. DEUTEX -iwad -make WADINFO.TXT NEWBIE.WAD
  18.   and NEWBIE.WAD is directly usable by doom
  19.  
  20.  
  21. if you replace only some of the sprites of DOOM (better):
  22. DEUTEX -iwad -make WADINFO.TXT NEWBIE.WAD
  23.   It's much smaller, and easier to distribute. but then your PWAD would
  24.   lock-up DOOM on startup. So anyone who want to use it has 3 choices:
  25.     a/  DEUTEX -merge NEWBIE.WAD        
  26.         (modifies DOOM.WAD. but safe and fast )
  27.     b/  DEUSF  -append NEWBIE.WAD        
  28.         (modifies NEWBIE.WAD. safer, but waste some space)
  29.     c/  DEUSF  -add NEWBIE.WAD NEWBIE2.WAD    
  30.         (create NEWBIE2.WAD. the safest, but space wasted)
  31.  
  32. You might wish to add the -sprite command before anything, because
  33. else you'll also inherit of flats!
  34.  
  35. Use in installs: DeuSF -sprite -app NEWBIE.WAD
  36.  
  37. Don't forget that you can only freely distribute DeuSF. There are
  38. restrictions on the distribution of DeuTex.
  39.