PRC8/nwn/nwnprc/trunk/scripts/prc_s_conscaura.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
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.
2024-02-11 14:01:05 -05:00

44 lines
1.4 KiB
Plaintext

//::///////////////////////////////////////////////
//:: [Censure Daemons]
//:: [prc_s_censuredm.nss]
//:://////////////////////////////////////////////
//:: All allies in the area are immune to fear
//:: and other mind effects created by outsiders
//:://////////////////////////////////////////////
//:: Created By: Aaon Graywolf
//:: Created On: Mar 17, 2004
//:://////////////////////////////////////////////
#include "prc_alterations"
void main()
{
string sMes = "";
object oPC = OBJECT_SELF;
if(!GetHasSpellEffect(GetSpellId()))
{
//Declare major variables including Area of Effect Object
effect eAOE = EffectAreaOfEffect(114);
effect eVis = EffectVisualEffect(VFX_DUR_PROTECTION_GOOD_MINOR);
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
effect eGood = EffectVisualEffect(VFX_IMP_GOOD_HELP);
effect eLink = EffectLinkEffects(eAOE, eVis);
eLink = EffectLinkEffects(eLink, eDur);
object oTarget = PRCGetSpellTargetObject();
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLink, oTarget);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eGood, oTarget);
sMes = "*Consecrated Aura Activated*";
}
else
{
// Removes effects
PRCRemoveSpellEffects(GetSpellId(), oPC, oPC);
sMes = "*Consecrated Aura Deactivated*";
}
FloatingTextStringOnCreature(sMes, oPC, FALSE);
}