PRC8/nwn/nwnprc/trunk/scripts/prc_tn_des_c.nss
Jaysyn904 797442d3da Fixed Major Zone of Desecration
Fixed Major Zone of Desecration.
2025-06-13 16:53:35 -04:00

31 lines
1010 B
Plaintext

//::///////////////////////////////////////////////
//:: Desecrate
//:: prc_tn_des_c
//:://////////////////////////////////////////////
/*
You create an aura that boosts the undead
around you.
*/
#include "prc_alterations"
#include "prc_spell_const"
void main()
{
object oTarget = GetExitingObject();
if(GetHasSpellEffect(SPELL_DES_20, oTarget) || GetHasSpellEffect(SPELL_DES_100, oTarget) || GetHasSpellEffect(SPELL_DESECRATE, oTarget))
{
//Search through the valid effects on the target.
effect eAOE = GetFirstEffect(oTarget);
while(GetIsEffectValid(eAOE))
{
if(GetEffectCreator(eAOE) == GetAreaOfEffectCreator())
{
if(GetEffectSpellId(eAOE) == SPELL_DES_20 || GetEffectSpellId(eAOE) == SPELL_DESECRATE || GetEffectSpellId(eAOE) == SPELL_DES_100)
RemoveEffect(oTarget, eAOE);
}
//Get next effect on the target
eAOE = GetNextEffect(oTarget);
}
}
}