diff --git a/Area-Switches-for-PRC-Teleport-System.md b/Area-Switches-for-PRC-Teleport-System.md index daa4a6a..f29d92a 100644 --- a/Area-Switches-for-PRC-Teleport-System.md +++ b/Area-Switches-for-PRC-Teleport-System.md @@ -1,7 +1,7 @@ /** * Defines the maximum number of teleport target locations a PC may store. * Default: 50 - */ + const string PRC_TELEPORT_MAX_TARGET_LOCATIONS = "PRC_TELEPORT_MAX_TARGET_LOCATIONS"; /** @@ -9,7 +9,7 @@ const string PRC_TELEPORT_MAX_TARGET_LOCATIONS = "PRC_TELEPORT_MAX_TARG * (ie, their scripts use GetCanTeleport()) fail. * * Default: Off - */ + const string PRC_DISABLE_TELEPORTATION = "PRC_DISABLE_TELEPORTATION"; /** @@ -22,25 +22,25 @@ const string PRC_DISABLE_TELEPORTATION = "PRC_DISABLE_TELEPORTA * PRC_DISABLE_TELEPORTATION_FROM_AREA * PRC_DISABLE_TELEPORTATION_TO_AREA * PRC_DISABLE_TELEPORTATION_WITHIN_AREA - */ + const string PRC_DISABLE_TELEPORTATION_IN_AREA = "PRC_DISABLE_TELEPORTATION_IN_AREA"; /** * A value of PRC_DISABLE_TELEPORTATION_IN_AREA. This disables teleporting * from the area in question to other areas. - */ + const int PRC_DISABLE_TELEPORTATION_FROM_AREA = 0x1; /** * A value of PRC_DISABLE_TELEPORTATION_IN_AREA. This disables teleporting * from other areas to the area in question. - */ + const int PRC_DISABLE_TELEPORTATION_TO_AREA = 0x2; /** * A value of PRC_DISABLE_TELEPORTATION_IN_AREA. This disables both teleporting * from area in question to another location in that same area. - */ + const int PRC_DISABLE_TELEPORTATION_WITHIN_AREA = 0x4; /**