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
490 B
Plaintext
17 lines
490 B
Plaintext
#include "prc_feat_const"
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
if(GetLocalInt(oPC, "Heal_Kicker") == 2)
|
|
{
|
|
DeleteLocalInt(oPC, "Heal_Kicker");
|
|
FloatingTextStringOnCreature("*Healing Kicker (Reflex Saves) deactivated*", oPC, FALSE);
|
|
}
|
|
else
|
|
{
|
|
SetLocalInt(oPC, "Heal_Kicker", 2);
|
|
FloatingTextStringOnCreature("*Healing Kicker (Reflex Saves) activated*", oPC, FALSE);
|
|
}
|
|
IncrementRemainingFeatUses(oPC, FEAT_HEALING_KICKER_2);
|
|
} |