Clear out experimental .35 files

Clear out experimental .35 files
This commit is contained in:
Jaysyn904
2024-02-11 13:04:14 -05:00
parent 2112b92e24
commit 618cd42b82
22356 changed files with 0 additions and 1248956 deletions

View File

@@ -1,43 +0,0 @@
//::///////////////////////////////////////////////
//:: [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);
}