Updated Area Switches for PRC Teleport System (markdown)

Jaysyn904 2022-03-28 18:10:53 +00:00
parent 07182313a5
commit f34bd64a28

@ -1,7 +1,7 @@
/** /**
* Defines the maximum number of teleport target locations a PC may store. * Defines the maximum number of teleport target locations a PC may store.
* Default: 50 * Default: 50
*/
const string PRC_TELEPORT_MAX_TARGET_LOCATIONS = "PRC_TELEPORT_MAX_TARGET_LOCATIONS"; 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. * (ie, their scripts use GetCanTeleport()) fail.
* *
* Default: Off * Default: Off
*/
const string PRC_DISABLE_TELEPORTATION = "PRC_DISABLE_TELEPORTATION"; 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_FROM_AREA
* PRC_DISABLE_TELEPORTATION_TO_AREA * PRC_DISABLE_TELEPORTATION_TO_AREA
* PRC_DISABLE_TELEPORTATION_WITHIN_AREA * PRC_DISABLE_TELEPORTATION_WITHIN_AREA
*/
const string PRC_DISABLE_TELEPORTATION_IN_AREA = "PRC_DISABLE_TELEPORTATION_IN_AREA"; const string PRC_DISABLE_TELEPORTATION_IN_AREA = "PRC_DISABLE_TELEPORTATION_IN_AREA";
/** /**
* A value of PRC_DISABLE_TELEPORTATION_IN_AREA. This disables teleporting * A value of PRC_DISABLE_TELEPORTATION_IN_AREA. This disables teleporting
* from the area in question to other areas. * from the area in question to other areas.
*/
const int PRC_DISABLE_TELEPORTATION_FROM_AREA = 0x1; const int PRC_DISABLE_TELEPORTATION_FROM_AREA = 0x1;
/** /**
* A value of PRC_DISABLE_TELEPORTATION_IN_AREA. This disables teleporting * A value of PRC_DISABLE_TELEPORTATION_IN_AREA. This disables teleporting
* from other areas to the area in question. * from other areas to the area in question.
*/
const int PRC_DISABLE_TELEPORTATION_TO_AREA = 0x2; const int PRC_DISABLE_TELEPORTATION_TO_AREA = 0x2;
/** /**
* A value of PRC_DISABLE_TELEPORTATION_IN_AREA. This disables both teleporting * A value of PRC_DISABLE_TELEPORTATION_IN_AREA. This disables both teleporting
* from area in question to another location in that same area. * from area in question to another location in that same area.
*/
const int PRC_DISABLE_TELEPORTATION_WITHIN_AREA = 0x4; const int PRC_DISABLE_TELEPORTATION_WITHIN_AREA = 0x4;
/** /**