home *** CD-ROM | disk | FTP | other *** search
/ Fatal Distractions! / fataldistractions.bin / appndxa / masters / addendum.txt < prev    next >
Text File  |  1994-02-05  |  3KB  |  95 lines

  1. Version 1.6 of the MASTER's EDITION of AGT has some "bug" fixes and several
  2. changes that are not documented in the manual.
  3.  
  4. First of all, version 1.6 has a number of "bug" fixes to solve various
  5. SoundBlaster card compatibility problems.  In hind-sight, I would never even
  6. consider SoundBlaster again!!
  7.  
  8. Other changes, include:
  9.  
  10. 1.  More Prepositions
  11.  
  12.     Version 1.6 now accepts a few more prepositions -- so it is now possible
  13.     to JUMP OUT THE WINDOW.  The total list of preposition that AGT recognizes
  14.     now includes the following:
  15.  
  16.     IN, ON, OFF, UP, DOWN, TOWARD, TOWARDS, BETWEEN, OUT, AROUND, UPON,
  17.     THRU, THROUGH, INSIDE, NEAR, BESIDE, BY, UNDER, OVER, ACROSS, BEHIND,
  18.     ABOUT, AT, FROM, FOR, WITH, INTO, and TO.
  19.  
  20. 2.  RePosition Meta-command Token
  21.  
  22.     Normally when a NOUN is moved from one location to another, its POSITION
  23.     is erased.  This makes sense, if you get something that is positioned as
  24.     ( behind the tree ) and you do an inventory, you don't want to have the
  25.     noun's positions still listed as ( behind the tree ) in your inventory
  26.     list.
  27.  
  28.     However, at time you may want to move something to a new location and
  29.     preserve its POSITION.  This can now be done by using the RePosition
  30.     token.  The expected form of this token is:
  31.  
  32.        RePosition [Noun to move] [Location to move to]
  33.  
  34.     For example, to have a beer placed ( on the bar ) when you buy a drink
  35.     at a bar, you could do the following:
  36.  
  37.        NOUN [drink]
  38.        beer
  39.        cold
  40.        There is a cold beer here.
  41.        LOCATION [NoWhere]
  42.        POSITION On the Bar
  43.        END_NOUN
  44.  
  45.        NOUN_DESCR [drink]
  46.        It looks great.  Cold and refreshing!
  47.        END_NOUN_DESCR
  48.  
  49.        COMMAND BUY BEER
  50.        NOT Present [Drink]
  51.        AtLocation [In Bar]
  52.        RePosition [Drink] [In Bar]
  53.        PrintMessage "The bartender places a tall cold beer on the bar."
  54.        BlankLine
  55.        DoneWithTurn
  56.        END_COMMAND
  57.  
  58. 3.  PUT/PLACE IN/INSIDE "Bug" Fix
  59.  
  60.     The PUT or PLACE IN (or INSIDE) command now works the way the documentation
  61.     says it does. i.e., a ten pound sack now can hold no more than ten pounds
  62.     of other objects in total.  If you try to put something inside the sack
  63.     that would cause the total weight or size inside the sack to be more than
  64.     the sack's weight or size, you will now get an error message.
  65.  
  66. 4.  LOG and REPLAY commands
  67.  
  68.     In version 1.6 of the Master's Edition, it is possible to log your
  69.     commands to a disk file and later replay them.  The syntax to do this is
  70.     as follows:
  71.  
  72.     First, the LOG command:
  73.  
  74.        (1)   LOG FileName (without extension)
  75.              -- LOGS all input to FileName.LOG
  76.  
  77.        (2)   LOG CLOSE or LOG OFF
  78.              -- Stops Logging input and closes FileName.LOG
  79.  
  80.     Now, the REPLAY command:
  81.  
  82.        (1)   REPLAY FileName (without extension) Number
  83.              -- REPLAY input from FileName.LOG automatically every
  84.              Number seconds, e.g., REPLAY QWERTY 5 would
  85.              replay input from the files QWERTY.LOG inputting a
  86.              new input command every 5 seconds.
  87.  
  88.        (2)   REPLAY FileName (without extension) STEP
  89.              -- REPLAY input from FileName.LOG automatically every
  90.              time the RETURN key is hit, e.g., REPLAY QWERTY STEP
  91.              replay input from the files QWERTY.LOG inputting a
  92.              new input command every time the RETURN key is hit.
  93.  
  94.  
  95.