Further file organization
Further file organization
This commit is contained in:
17
nwn/nwnprc/trunk/scripts/prc_cbtmed_hkck1.nss
Normal file
17
nwn/nwnprc/trunk/scripts/prc_cbtmed_hkck1.nss
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "prc_feat_const"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
if(GetLocalInt(oPC, "Heal_Kicker") == 1)
|
||||
{
|
||||
DeleteLocalInt(oPC, "Heal_Kicker");
|
||||
FloatingTextStringOnCreature("*Healing Kicker (Sanctuary) deactivated*", oPC, FALSE);
|
||||
}
|
||||
else
|
||||
{
|
||||
SetLocalInt(oPC, "Heal_Kicker", 1);
|
||||
FloatingTextStringOnCreature("*Healing Kicker (Sanctuary) activated*", oPC, FALSE);
|
||||
}
|
||||
IncrementRemainingFeatUses(oPC, FEAT_HEALING_KICKER_1);
|
||||
}
|
Reference in New Issue
Block a user