PRC8/nwn/nwnprc/trunk/scripts/prc_cbtmed_hkck3.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

17 lines
472 B
Plaintext

#include "prc_feat_const"
void main()
{
object oPC = OBJECT_SELF;
if(GetLocalInt(oPC, "Heal_Kicker") == 3)
{
DeleteLocalInt(oPC, "Heal_Kicker");
FloatingTextStringOnCreature("*Healing Kicker (Aid) deactivated*", oPC, FALSE);
}
else
{
SetLocalInt(oPC, "Heal_Kicker", 3);
FloatingTextStringOnCreature("*Healing Kicker (Aid) activated*", oPC, FALSE);
}
IncrementRemainingFeatUses(oPC, FEAT_HEALING_KICKER_3);
}