RATDOG/_module/gic/traptestarea.gic.json
Jaysyn904 d168e90e83 Remade Dungeon Level One: Central
Remade Dungeon Level One: Central.  Added Didiamus' creature overrides.  Full compile.
2023-09-17 23:08:55 -04:00

258 lines
64 KiB
JSON

{
"__data_type": "GIC ",
"Creature List": {
"type": "list",
"value": []
},
"Door List": {
"type": "list",
"value": [
{
"__struct_id": 8,
"Comment": {
"type": "cexostring",
"value": "Rusted Door"
}
}
]
},
"Encounter List": {
"type": "list",
"value": []
},
"List": {
"type": "list",
"value": []
},
"Placeable List": {
"type": "list",
"value": [
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": ""
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "LOK Pit Trap by Danmar\r\n"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "Fire's Trapporium by Firehazurd"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "Fire's Trapporium by Firehazurd"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": ""
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": ""
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "Fire's Trapporium by Firehazurd"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "Fire's Trapporium by Firehazurd"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "Fire's Trapporium by Firehazurd"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "Fire's Trapporium by Firehazurd"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "Fire's Trapporium by Firehazurd"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "Floor Lever - 1"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "LOK Pit Trap by Danmar\r\n"
}
},
{
"__struct_id": 9,
"Comment": {
"type": "cexostring",
"value": "LOK Pit Trap by Danmar\r\n"
}
}
]
},
"SoundList": {
"type": "list",
"value": [
{
"__struct_id": 6,
"Comment": {
"type": "cexostring",
"value": ""
},
"PlayInToolset": {
"type": "byte",
"value": 1
}
}
]
},
"StoreList": {
"type": "list",
"value": []
},
"TriggerList": {
"type": "list",
"value": [
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": ""
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
},
{
"__struct_id": 1,
"Comment": {
"type": "cexostring",
"value": "Generic trigger that controls a CEP trap placeble. The following setup is required:\r\n\r\nNote: This trigger and scripts were designed for a generic trigger, not a trap trigger. A trap trigger cannot be reset after a disarm or recover.\r\n\r\nIf you do set it up as a trap trigger, move the OnEnter script from the OnEnter event to the OnTriggered event. It should work until it has been disarmed or recovered.\r\n\r\nSetup required:\r\n1. Place a generic trigger in your area\r\n2. Place the script cs_oe_trapcep in the OnEnter event of the trigger\r\n3. Place the script cs_ox_trapcep in the OnExit event\r\n4. Place the CEP trap placeable on or above the trigger (unless you want the trap to remain \"hidden\" prior to being triggered, in which case the HiddenTrap parameter needs to be set to TRUE and the TrapResRef parameter requires the resref of the trap.\r\n5. Configure the trap \"parameters\" using local variables stored on the trigger. Local variables are set from the \"variables\" button on the Advanced\" tab of the trigger.\r\n\r\n\r\n\r\n\r\n(Continued...)\r\n\r\nThe following parameters are configurable and can be setup as local variables on the trigger. The variable name must match the string name listed down the left side of the list below:\r\n\r\nTrapTag : tag of trap placeable (expressed as a string) (required)\r\n (Defaults to an empty string)\r\n\r\nTrapReflexDC : DC required to avoid the trap (expressed as an integer)\r\n (Defaults to 15)\r\n\r\nDamageType : DAMAGE_TYPE_* (expressed as an integer)\r\n (Defaults to 1 = DAMAGE_TYPE_BLUDGEONING)\r\n\r\n 1 = DAMAGE_TYPE_BLUDGEONING\r\n 2 = DAMAGE_TYPE_PIERCING\r\n 4 = DAMAGE_TYPE_SLASHING\r\n 8 = DAMAGE_TYPE_MAGICAL\r\n 16 = DAMAGE_TYPE_ACID\r\n 32 = DAMAGE_TYPE_COLD\r\n 64 = DAMAGE_TYPE_DIVINE\r\n 128 = DAMAGE_TYPE_ELECTRICAL\r\n 256 = DAMAGE_TYPE_FIRE\r\n 512 = DAMAGE_TYPE_NEGATIVE\r\n 1024 = DAMAGE_TYPE_POSITIVE\r\n 2048 = DAMAGE_TYPE_SONIC\r\n\r\nNoKnockdown : TRUE/FALSE (expressed as an integer)\r\n (Defaults to FALSE = Knockdown occurs)\r\n\r\nSoundObjectTag : tag of sound that plays during trigger of trap\r\n (Defaults to empty string = no sound)\r\n\r\nMaxDamage : the maximum damage distributed (expressed as an integer)\r\n (Defaults to 10)\r\n\r\nMinDamage : the minimum damage distributed (expressed as an integer)\r\n (Defaults to 1)\r\n\r\nResetTime : number of seconds after \"trap is triggered\" that the\r\n trap can be triggered again\r\n (Defaults to 120 seconds)\r\n\r\nDeactivateTime : number of seconds after \"trigger\" that the trap is\r\n repositioned in its \"ready\" state (this value should\r\n be equal to or less than ResetTime)\r\n (Defaults to 110 seconds)\r\n\r\nIncludeNonPC : TRUE/FALSE (expressed as an integer) whether the trap can be triggered by a non-PC\r\n (Defaults to TRUE = dooes trigger on non-PC's)\r\n\r\nContinuousDmg : TRUE/FALSE (expressed as an integer) a value of TRUE causes damage to the PC every 2 seconds until they exit the trigger\r\n (Defaults to FALSE = no continuous damage)\r\n\r\nHiddenTrap : TRUE/FALSE (expressed as an integer) a value of TRUE assumes the trap is \"hidden\" (not actually placed in the area), so when the trap is triggered, the script\r\n actually creates the trap placeable, then activates it. On deactivate, the trap is destroyed.\r\n (Defaults to FALSE = which requires placement of the trap)\r\n\r\nTrapResRef : the resref of the trap being triggered - only required\r\n if HiddenTrap is set to TRUE.\r\n (Defaults to empty string)\r\n"
}
}
]
},
"WaypointList": {
"type": "list",
"value": []
}
}