Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
17 lines
807 B
Plaintext
17 lines
807 B
Plaintext
// Save the AC to slot 5
|
|
|
|
#include "psi_inc_ac_const"
|
|
|
|
const string sSlotToUse = "5";
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
SetLocalInt(oPC, ASTRAL_CONSTRUCT_LEVEL + sSlotToUse, GetLocalInt(oPC, ASTRAL_CONSTRUCT_LEVEL + EDIT));
|
|
SetLocalInt(oPC, ASTRAL_CONSTRUCT_OPTION_FLAGS + sSlotToUse, GetLocalInt(oPC, ASTRAL_CONSTRUCT_OPTION_FLAGS + EDIT));
|
|
SetLocalInt(oPC, ASTRAL_CONSTRUCT_RESISTANCE_FLAGS + sSlotToUse, GetLocalInt(oPC, ASTRAL_CONSTRUCT_RESISTANCE_FLAGS + EDIT));
|
|
SetLocalInt(oPC, ASTRAL_CONSTRUCT_ENERGY_TOUCH_FLAGS + sSlotToUse, GetLocalInt(oPC, ASTRAL_CONSTRUCT_ENERGY_TOUCH_FLAGS + EDIT));
|
|
SetLocalInt(oPC, ASTRAL_CONSTRUCT_ENERGY_BOLT_FLAGS + sSlotToUse, GetLocalInt(oPC, ASTRAL_CONSTRUCT_ENERGY_BOLT_FLAGS + EDIT));
|
|
}
|