home *** CD-ROM | disk | FTP | other *** search
/ DeathMatch for Doom 1 & 2 / DeathMatch.bin / other / deutut.txt < prev    next >
Text File  |  1994-10-20  |  19KB  |  444 lines

  1.   DEU TUTORIAL v1.5
  2.  
  3.   Making your first original level.
  4.  
  5.   This document and the accompanying .wad files should help
  6.   you to see what you need to do to build a level.  It's a
  7.   sort of touch-and-see how it works thing.  (sounds like
  8.   fun!)
  9.  
  10.   This tutorial works best it you print out the TUTOR.DOC
  11.   and then follow along with DEU on the computer.
  12.  
  13.   Items appearing in braces {} indicate that there is a file
  14.   that you can load to follow along and see how to do things.
  15.   load the file by typing  "R wadfilename.WAD" at the DEU Main Menu.
  16.   After the file is loaded type "E 2 1" to go into the editor.
  17.   then select the editing mode(s) indicated in the braces
  18.   and move the pointer around to touch things and look at how
  19.   they are structured.
  20.  
  21.  
  22.   Now we begin our journey...
  23.  
  24.    1. First create the new map with the Create command from the 
  25.       main menu (C 2 1).  Go into vertices mode (hit tab) and 
  26.       create some vertices by positioning the cursor where you
  27.       want the vertex and then press "Ins" to place a vertex 
  28.       there.  Using the Grid mode (press G) is helpful if you
  29.       want to line up the vertices.  You will need a minimum of 
  30.       three to create an enclosed polygon.  (Don't be afraid 
  31.       of running out until you're really good at this,
  32.       many doom maps contain well over 800 vertices.)
  33.  
  34.    2. Group the vertices by marking them (highlight them and left click the 
  35.       mouse or press "M") and add linedefs by pressing insert.  It is best
  36.       to mark them in CLOCKWISE order.
  37.  
  38.    3. Mark all of the lines for the sector (you will want to mark the ones
  39.       that aren't already marked) and press "Ins" to add a sector.
  40.  
  41.    4. Repeat steps 1 - 3.  
  42.       (You'll want more than 1 sector, unless you are very dull).
  43.       {S1.WAD - vertices, linedefs}
  44.       Load up this wad and see a very basic 2 sector map.
  45.  
  46.    5. (This step is made mostly obsolete by DEU5.0 and above since
  47.       it now does these things automatically, but you can verify it
  48.       anyway.)
  49.  
  50.       If you have any lines that are shared by 2 sectors and are meant 
  51.       to be the place where you cross from room to room set the Flags 
  52.       to 2S (two-sided and shoot thru) and turn off the Impassable Flag.  
  53.       You will probably want to get rid of any of the Normal/Upper/Lower 
  54.       Textures that are on lines that you walk across (usually, unless 
  55.       you want to create the illusion of walking through a wall.).
  56.       
  57.       {S2.WAD - Linedef} Check out Linedef # 1.
  58.  
  59.  
  60.    6. To change the way the walls look, select a line or a group of lines 
  61.       and change the Normal texture on some of the Sidedefs. (To go to
  62.       line editing mode, press L).
  63.       
  64.       {S3.WAD - Linedef} Take a look at Linedefs #0,2, and 3.
  65.  
  66.  
  67.    7. Change the Floor and Ceiling Textures in a sector. (To go to sector
  68.       editing mode press S).
  69.       
  70.       {s4.wad -Sector}  Look at Sector #1, compare to the default in
  71.       sector 0.
  72.  
  73.  
  74.    8. Add a Player1 Start thing. If you want to play cooperatively you
  75.       will also want to add a Player2, Player3 and Player4 start thing
  76.       and if you want to play in deathmatch mode you must have a MINIMUM
  77.       of 4 deathmatch start things)
  78.       
  79.       {s5.wad -Things}  That's were you start and the direction you're
  80.       facing.
  81.  
  82.    9. Change the type of one of the lines to 
  83.          "Special - Ends level goes to next level."
  84.       If you want to be able to leave the level you will need an exit.
  85.       (Even if just to see the deathmatch frag counts!).
  86.       
  87.       {S6.WAD - Linedefs} Check out Line 5.  Oh yeah, the texture was
  88.       changed to one of the SW1xxxx textures so that it looks like a
  89.       switch too.  Nice touch eh?
  90.  
  91.  
  92.   10. Use Q to quit and save your changes.  Answer Y to the question
  93.       about building the nodes, etc. (unless you use expert mode, 
  94.       in which case... Why are you reading the tutorial?? ;-)
  95.  
  96.   11. Use Q to quit DEU.
  97.  
  98.   12. Fire up doom and try it out!
  99.  
  100.    DOOM -FILE yourfile.WAD
  101.  
  102.         If you are working on a level higher than E1L1 you can
  103.         go straight there by using IDCLEVxy  where x is the episode
  104.         and y is the mission #.
  105.  
  106.   13. To record a demo of your level (a .LMP file) type this:
  107.  
  108.    DOOM -DEVPARM -WARP e m -SKILL s -RECORD demofile -FILE yourfile.WAD
  109.  
  110.         You must NOT type the .LMP extention and you MUST type the .WAD
  111.         extension. 'e' is for Episode (1, 2 or 3), 'm' is for mission
  112.         (1 to 9) and 's' is for skill level (1 to 5). If you die before
  113.         the end, press SPACE to end the recording and go back to DOS.
  114.  
  115.   14. To play back your demo, type this:
  116.  
  117.    DOOM -PLAYDEMO demofile -FILE yourfile.WAD
  118.  
  119.  
  120.  
  121.  
  122.   CHAPTER 2:  The Adventure Continues...
  123.  
  124.  
  125.  
  126.   Now that we have a level, let's put some cool stuff in it.  What
  127.   we will do here is to show ONE possible way to construct some 
  128.   special sectors like doors, stairs and lifts.  Please note that
  129.   there ARE other ways to do them because there are many different
  130.   types of doors & lifts, etc.  Also, you're a little more experienced
  131.   at making vertices, lines and sectors already so we are not going 
  132.   to have as many WAD files to demonstrate the structures, just one
  133.   or two to show each structure.
  134.  
  135.  
  136.  
  137.  
  138.   Adding a *DOOR*.  We'll open it for you...
  139.  
  140.   1. The split linedef feature can be used to add a vertex which 
  141.      can then be dragged to where you want the edge of the door 
  142.      to be.  This is helpful if you decide after you build the 
  143.      sector that you want to have a door.  If you planned ahead
  144.      you won't need this.
  145.  
  146.      Add some vertices & lines to build a new sector which will 
  147.      later become the door.
  148.  
  149.      You may want to add some more vertices and lines to build a sector
  150.      on the other side of the door so you've got somewhere to go once
  151.      the door is open.
  152.   
  153.   {s7.wad - linedefs and sectors}
  154.  
  155.      There's no door here yet, but it'll be coming soon.
  156.      Split line 0 into lines 0 & 8.
  157.      Added lines 9,10,11.  Used lines 0,9,10,& 11 to add sector 2
  158.      (Sector 2 will become the door in the next file.)
  159.      Added lines 12,13,14.  Added sector 3 on lines 10,12,13,& 14.
  160.      Sector 3 is the room on the other side.     
  161.  
  162.   2. The "Normal" vector of the lines (The side of the arrow with the
  163.      line sticking out of it) must be on the 'outside' of the door.
  164.      
  165.      Change the type of the linedefs on the front and back of the door
  166.      to a DOOR type.  1 DR Open door - closes after 5 seconds is the
  167.      best one for beginners, you'll figure out other types of doors later.
  168.  
  169.      Change the first sidedef of the front & back of the door to have
  170.      an Upper Texture only (NO Normal or Lower Texture).  If you want it
  171.      to be obvious, make it a texture that looks like a door.
  172.  
  173.      Change the ceiling height of the door sector to the same level 
  174.      as it's floor.  It will rise until it's just below the height 
  175.      of the lowest adjacent ceiling.
  176.  
  177.      Change the ceiling texture of the door sector to something that looks
  178.      like the bottom of the door.
  179.  
  180.      On the linedefs on the sides of the door that are the door frame,
  181.      set the flags to Lo (lower texture unpegged.) This will keep them
  182.      from moving when the door goes up.  Also, you should set the 
  183.      Normal texture to something that looks like a door frame.
  184.  
  185.      {s8.wad - linedefs and sectors}
  186.  
  187.      Linedefs 0 & 10, changed type to Door - DR open door
  188.      Changed first sidedefs upper texture (BIGDOOR2).
  189.      Set sector #2 Ceiling height to the same as its' floor.
  190.      Changed ceiling texture (FLAT20).
  191.      Changed lines 9 & 11 texture (DOORTRAK).
  192.      Set 9 & 11 to type Lower Unpegged.
  193.      Tada!  A working door!
  194.  
  195.  
  196.   Perhaps you can buy a Stairway to Heaven, but you'll have to
  197.   build the *STAIRWAY* to Hell!
  198.  
  199.  
  200.   1. Add the linedefs and sectors that will become the stairs.
  201.   
  202.   2. Individually change the floor heights of each stair sector.
  203.      Change them in units of 8 or 16 for best results (24 is the
  204.      maximum for a stair