Further file organization
Further file organization
This commit is contained in:
17
nwn/nwnprc/trunk/scripts/prc_cbtmed_hkck3.nss
Normal file
17
nwn/nwnprc/trunk/scripts/prc_cbtmed_hkck3.nss
Normal file
@@ -0,0 +1,17 @@
|
||||
#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);
|
||||
}
|
Reference in New Issue
Block a user