forked from gever/bwx-adventure
-
Notifications
You must be signed in to change notification settings - Fork 1
Handy Dandy Quick Reference Guide to Everything
sleepinghungry edited this page Jan 14, 2017
·
7 revisions
###### item_variable = location_variable.new_object("item name","item description")
Example:
key = sidewalk.new_obejct("key","a small silver key")
###### location_variable.make_required(item_variable)
###### connection_variable.make_required(item_variable)
Examples:
office.make_required(key)
office_door.make_required(key)
###### item_variable.add_phrase("command", Say("What the game says after you use the game command"))
Example:
key.add_phrase("rub key", Say("This is not a magic lamp."))