Files
HeroesStone_PRC8/_module/nss/hc_inc_remeff.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

58 lines
2.2 KiB
Plaintext

// hcr3.1
// took out old subrace code.
// hcr3 8/12/2003
// fix to not remove extraordinary effects.
// 5.5.1
// added if statement to subrace code.
// HCR 5.5 change by Lorinton
// Modified to respawn the subrace after removing effects.
// Modified to reduce (hopefully eliminate) subrace effects being stripped by the game
// and other effects such as level drain being stripped by the subrace system.
void RemoveEffects(object oDead)
{
//Declare major variables
object oTarget = oDead;
effect eVisual = EffectVisualEffect(VFX_IMP_RESTORATION);
int bValid;
effect eBad = GetFirstEffect(oTarget);
//Search for negative effects
while(GetIsEffectValid(eBad))
{
int nEtype=GetEffectType(eBad);
if (nEtype == EFFECT_TYPE_ABILITY_DECREASE ||
nEtype == EFFECT_TYPE_INVISIBILITY ||
nEtype == EFFECT_TYPE_AC_DECREASE ||
nEtype == EFFECT_TYPE_ATTACK_DECREASE ||
nEtype == EFFECT_TYPE_DAMAGE_DECREASE ||
nEtype == EFFECT_TYPE_DAMAGE_IMMUNITY_DECREASE ||
nEtype == EFFECT_TYPE_SAVING_THROW_DECREASE ||
nEtype == EFFECT_TYPE_SPELL_RESISTANCE_DECREASE ||
nEtype == EFFECT_TYPE_SKILL_DECREASE ||
nEtype == EFFECT_TYPE_BLINDNESS ||
nEtype == EFFECT_TYPE_DEAF ||
nEtype == EFFECT_TYPE_PARALYZE ||
nEtype == EFFECT_TYPE_NEGATIVELEVEL ||
nEtype == EFFECT_TYPE_FRIGHTENED ||
nEtype == EFFECT_TYPE_DAZED ||
nEtype == EFFECT_TYPE_CONFUSED ||
nEtype == EFFECT_TYPE_POISON ||
nEtype == EFFECT_TYPE_DISEASE
)
{
//Remove effect if it is negative.
// hcr3 8/12/2003
if (GetEffectSubType(eBad) != SUBTYPE_EXTRAORDINARY)
RemoveEffect( oTarget, eBad );
}
eBad = GetNextEffect(oTarget);
}
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_RESTORATION, FALSE));
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVisual, oTarget);
// * May 2002: Removed this because ActionRest is no longer an instant.
// * rest the player
//AssignCommand(oDead, ActionRest());
}