home *** CD-ROM | disk | FTP | other *** search
/ Action Ware 12: Heretic & Hexen / actionware12.iso / acware12 / editors / heth185 / docs / scrpinfo.txt < prev    next >
Encoding:
Text File  |  1996-01-10  |  1.6 KB  |  72 lines

  1. ::Inserting Scripts with HETH::
  2.  
  3. NOTE: Script files must have a prefix of at least six characters. In other 
  4. words, SCRIPT.RAW works, but not SCRIP.RAW. Not sure why.
  5.  
  6. ============================================================================
  7.  
  8. [Method 1]
  9.  
  10. After you've compiled your script, you'll have a MYSCRIPT.O file. This needs
  11. to be renamed to MYSCRIPT.RAW. 
  12.  
  13. Start HETH.
  14.  
  15. Open your PWAD:
  16.  
  17.     r MYWAD.WAD
  18.  
  19. Insert the MYSCRIPT.RAW into a BEHAVIOR.WAD:
  20.  
  21.     i MYSCRIPT.RAW BEHAVIOR
  22.  
  23. Read the new BEHVAIOR.WAD into HETH:
  24.  
  25.     r BEHAVIOR.WAD
  26.  
  27. Now group the BEHAVIOR.WAD containing your script and your PWAD into a
  28. final NEWPWAD.WAD:
  29.  
  30.     g NEWPWAD.WAD
  31.  
  32. The <g>roup function will combine all open PWADs into whatever OUTPUT.WAD
  33. name you define. To see what PWADs are open at any given time, type
  34.  
  35.     w <or> wads
  36.  
  37. So far the above method has been working for people. The critical factor is
  38. giving your compiled script a .RAW extension. 
  39.  
  40.  
  41. [METHOD 2]
  42.  
  43. Command 'O' converts a renamed compiled script to BEHAVIOR.WAD
  44.  
  45. Compile your script with the acc.exe utility,
  46.  
  47. rename the file from MYSCRIPT.O to MYSCRIPT.RAW,
  48.  
  49. Edit or Read a level:-
  50.  
  51.     R MYWAD.WAD
  52.  
  53. at the command line type:-
  54.  
  55.     O MYSCRIPT.RAW
  56.  
  57. then Group them to form a new PWAD:-
  58.  
  59.     G NEWPWAD.WAD
  60.  
  61. This is a quick addition, as inserting lumps this way only works for MAP01;
  62. a proper command from within the editor itself will be implemented soon.
  63.  
  64. =============================================================================
  65.  
  66. Thanks for supporting DETH and HETH!
  67.  
  68. -Dr Sleep
  69.  drsleep@pennet.com
  70.  
  71. 01-10-96
  72.