 |
 Actions/Events for Scribe Actions
Here is the list of ACTIONS/EVENTS which can be set in order to execute Scribe Actions (Player or Automatic):
- INV
- Prints the player's current inventory.
- DESC
- Describes the player's current surroundings.
- DROPALL
- Causes all of player's items carried to be dropped in the current location.
- END
- Ends the game.
- DONE
- Do not process any other events of this type (user or system)
- CREATE itemID
- Sets the location of item specified to the player's current location. itemID can either be the number of an item or the name of a numeric variable representing the item number.
- DESTROY itemID
- Sets the location of item specified to 'Not Created'. itemID can either be the number of an item or the name of a numeric variable representing the item number.
- SWAP itemID1 itemID2
- Swaps the locations of the two specified items. The itemID's can either be the number of an item or the name of a numeric variable representing the item number.
- PLACE itemID locationID
- Places item specified in location. (-1 = carried, -2 = worn, -3 = not created). The itemID and locationID can either be numbers of the item/locations, or names of numeric variables representing the item/location.
- GOTO locationID
- Sets the player's location to the location specified. locID can either be the number of a location or the name of a numeric variable representing the location number.
- MESSAGE messageID
- Prints the contents of message specified. The messageID can either be the number of a message, or the name of a numeric variable representing the message number.
- PRINT variable
- Prints the value of the variable specified.
- CLEAR variable
- Sets the value of the variable to 0 (or FALSE).
- SET variable
- Sets the value of the true/false variable to TRUE.
- SET variable value
- Sets the value of the variable to value. Value can be a number or the name of other variable.
- PLUS variable value
- Add the value to the variable. Value can be a number or the name of other variable.
- MINUS variable value
- Subtract the value from the variable. Value can be a number or the name of other variable.
|  |