REM STDDEFS.AGT #COMMENT STDDEFS.AGT -- AGT include file containing standard definitions Note that the Warning and LabelDelimiters options are saved, changed, and then restored. Warnings are temporarily disabled to avoid "Label not referenced" warnings. LabelDelimiters are temporarily changed to the default characters [] in case the user has changed them to something else (thus allowing this file to work properly regardless of the label delimiters in use by the main file). #END_COMMENT #COMMENT save, then change, warning & labels states #OPTIONS :-Warnings :/LabelDelimiters [] #COMMENT Macros for special "rooms" #DEFINE [Nowhere] 0 #DEFINE [Carried] 1 #DEFINE [Worn] 1000 #COMMENT Macros for the directions used with ChangePassageway #DEFINE [North] 1 #DEFINE [South] 2 #DEFINE [East] 3 #DEFINE [West] 4 #DEFINE [NorthEast] 5 #DEFINE [NorthWest] 6 #DEFINE [SouthEast] 7 #DEFINE [SouthWest] 8 #DEFINE [Up] 9 #DEFINE [Down] 10 #DEFINE [Enter] 11 #DEFINE [Exit] 12 #COMMENT Restore warning & labels states #OPTIONS =Warnings =LabelDelimiters