From 931ef8844600999dd1ac04efea3df62fe71042a8 Mon Sep 17 00:00:00 2001 From: Jaysyn904 <68194417+Jaysyn904@users.noreply.github.com> Date: Sun, 3 Jul 2022 23:04:52 -0400 Subject: [PATCH] Created NPC Behaviour Variables (markdown) --- NPC-Behaviour-Variables.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 NPC-Behaviour-Variables.md diff --git a/NPC-Behaviour-Variables.md b/NPC-Behaviour-Variables.md new file mode 100644 index 0000000..ded6385 --- /dev/null +++ b/NPC-Behaviour-Variables.md @@ -0,0 +1,35 @@ +### X2_SPELL_RANDOM +Setting this variable on a spellcaster creature will make its spell use a bit more random, but their spell selection may not always be appropriateto the situation anymore. + +### X2_L_SPAWN_USE_STEALTH +Set to 1 to make the creature activate stealth mode after spawn + +### X2_L_SPAWN_USE_SEARCH +Set to 1 to make the creature activate detectmode after spawn + +### X2_L_SPAWN_USE_AMBIENT +Set to 1 to make the creature play mobile ambient animations after spawn + +### X2_L_SPAWN_USE_AMBIENT_IMMOBILE +Set to 1 to make the creature play immobile ambient animations after spawn + +### X1_L_IMMUNE_TO_DISPEL +Set to 1 to make the creature immune to dispel magic (used for statues) + +### # X2_L_IS_INCORPOREAL +Set this variable to 1 on a creature to make it walk through other creatures + +### ## X2_L_NUMBER_OF_ATTACKS +Set this variable to 1-6 to override the number of attacks a creature has based on its BAB + +### X2_L_BEH_MAGIC +The value of this variable (int) is added to the chance that a creature will use magic in combat. Set to 100 for always, 0 for never + +### X2_L_BEH_OFFENSE +The higher value of this variable, the higher the chance that the creature will use offensive abilities in combat. Set to 0 to make them flee. + +X### 2_L_BEH_COMPASSION +The higher value of this variable, the higher the chance that the creature will aid friendly creatures in combat. Not that helping usually degrades the overall difficulty of an encounter, but makes it more interesting. + +### X2_S_PM_SPECIAL_ITEM +This allows you to script items that enhance a palemaster's summoned creatures. You needto put the name of a script into this variable that will be run on any creature called by the pale master's summon undead ability. You can use this script to add effects to the creature. You can use the OnEquip/OnUnEquip event hooks set this variable. \ No newline at end of file