home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / deutex1b.zip / MANUAL / DT4IDIOT.TXT < prev    next >
Text File  |  1994-09-15  |  4KB  |  129 lines

  1.  
  2.  
  3.             DeuTex for Idiots
  4.  
  5.  
  6. This is for those of you who don't *even* want to know how DOS works,
  7. but want to use DeuTex anyway. I'm not calling you idiot, I'm only
  8. refering to DEU4IDIOT :-) I know DOS a little bit, and trust me I'm
  9. well aware the I WAS THE IDIOT! Oh, Unix was soooo great....
  10.  
  11.  
  12. 1/ Switch on your computer (oh, had you guessed already?)
  13.  
  14. 2/ Register DOOM
  15.  
  16. 3/ Uncompress Deutex by  typing:
  17.     pkunzip -d deutex15.zip
  18.    that will give you a whole hierarchy of directories, among which
  19.    you will be lost.
  20.  
  21. 4/ read the manuals, situated in the \manual directory:
  22.     cd manual
  23.     type deutex.txt | more
  24.     cd ..
  25.  
  26.  
  27. 5/ the example subdirectory contains an example of DeuTex usage, but
  28.   it might be cryptic for you, so take your best looking WAD, let's
  29.   say TRINITY.WAD, and do the following operations:
  30.    first put DEUTEX.EXE in your patch
  31.     copy DEUTEX.EXE C:\DOS
  32.   (assuming C:\DOS is your standard DOS command directory)
  33.  
  34.  
  35. 6/ First ensure that DOOM is in the C:\DOOM\ directort.
  36.     if DOOM is in \DOOMSW you're a loser
  37.     if DOOM is in \DOOM2 and it's before october the 10th,1994,
  38.     Please type:  
  39.         deltree \DOOM2
  40.     Then report to the nearest termination center. Serve the computer.
  41.  
  42. 7/ Then type:
  43.     md \TRINITY
  44.     copy TRINITY.WAD \TRINITY
  45.     copy DEMO.BAT \TRINITY
  46.     cd \TRINITY
  47.     
  48.     
  49. 8/ Then run the demo batch
  50.     DEMO.BAT
  51.     
  52.     It will be a bit verbose and confusing the first time,
  53.     but you'll get used to it....
  54.  
  55.  
  56. 9/ You are in the TRINITY directory, TRINITY has been ripped off of
  57.    all it's contents, time for explanations!
  58.  
  59.   But if you intend to reuse the contents of TRINITY.WAD, 
  60.     *** PLEASE CREDIT STEVE McCRAY ***
  61.  
  62. 10/ Look into demo.bat, search for the string ***DeuTex***
  63.  
  64.     rem ***DeuTex***
  65.     deutex  -doom \doom     -wadir TRINITY.WAD
  66.         ^^^^^^^^^^^     ^^^^^^^^^^^^^^^^^^
  67.  (a)---> this tells DeuTex that DOOM.WAD and DOOM.EXE are in
  68.     the \DOOM directory
  69.  (b)--->this tell DeuTex to list the directory of TRINITY.WAD
  70.     reporting the entry types. Types *could* be wrong, if
  71.     there is still a bug in DeuTex.
  72.  
  73.  
  74.     rem ***DeuTex***
  75.     deutex  -doom \DOOM    -dir .    -xtractwad TRINITY.WAD
  76.         ^^^^^^^^^^^    ^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^
  77.             (a)         (b)         (c)
  78.  
  79.  (a)---> same as before
  80.  (b)---> this tells DeuTex that it must store the result in
  81.     the directory '.' (which is the current directory)
  82.     You could skip (b), because '.' is the default,
  83.     or you could specify another directory, like -dir TEST    
  84.  (c)---> this tells DeuTex to search for bounty in TRINITY.WAD 
  85.     
  86.  
  87.     rem ***DeuTex****
  88.     deutex  -doom \doom   -dir .   -makepwad WADINFO.TXT TRINIDAD.WAD
  89.         ^^^^^^^^^^^   ^^^^^^   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  90.             (a)        (b)        (c)        (d)
  91.  
  92.  (a)---> same as before
  93.  (b)---> same as before
  94.  (c)---> this tells DeuTex to create a new PWAD, from the creation
  95.     directives contained in WADINFO.TXT
  96.  (d)---> this is the name of the created PWAD
  97.  
  98.  
  99.  
  100.  
  101.    You can edit WADINFO.TXT, the format is pretty simple:
  102.    - put what you want on a line after the #, because # means 'comments'
  103.    - don't touch to lines with  Begin: or  End:   (they are delimiters)
  104.    - the lines between Begin: and End: describe a block, just like in 
  105.      Pascal (you know, the language you used just after Basic)
  106.     THE BLOCKS MUST APPEAR IN THAT ORDER
  107.     but the blocks can be optionnal.
  108.  
  109.     Begin: LUMPS
  110.          D_E1M1
  111.     End: LUMPS
  112.  
  113.     This tell DeuTex to go into the LUMPS subdirectory and get
  114.     there a file called D_E1M1.LMP, which is the music of TRINITY.WAD.
  115.     you could add your own music, for Episode 1 Mission 2 by editing:
  116.  
  117.     Begin: LUMPS
  118.     D_E1M1
  119.     D_E1M2
  120.     End: LUMPS
  121.  
  122.     Of course the file D_E1M2.LMP must exist...
  123.     you could generate it via MUS2MIDI, but take care that you must
  124.     use MUS2MIDI on a PWAD, and then extract the lump from the PWAD.
  125.     this will be fixed later...
  126.  
  127. End of the example
  128. PUT YOUR OWN COMMENTS AND MODIFICATIONS HERE!
  129.