//:://///////////////////////////////////////////// //:: Remove Disease //:: NW_S0_RmvDiseas.nss //:: Copyright (c) 2001 Bioware Corp. //::////////////////////////////////////////////// /* Removes all disease effects on the character. */ //::////////////////////////////////////////////// //:: Created By: Preston Watamaniuk //:: Created On: Aug 7, 2001 //::////////////////////////////////////////////// //:: VFX Pass By: Preston W, On: June 22, 2001 #include "hos_alignment" void main() { //Declare major variables object oTarget = GetSpellTargetObject(); int nType; int bValid = FALSE; effect eParal = GetFirstEffect(oTarget); effect eVis = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION); object oMe=OBJECT_SELF; //Fire cast spell at event for the specified target SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_REMOVE_DISEASE, FALSE)); //Get the first effect on the target while(GetIsEffectValid(eParal)) { //Check if the current effect is of correct type if (GetEffectType(eParal) == EFFECT_TYPE_DISEASE) { //Remove the effect if (GetLocalString(oMe,"sTeamID")!=GetLocalString(oTarget,"sTeamID")&&GetRacialType(oTarget)!=RACIAL_TYPE_UNDEAD&&GetMaster(oTarget)!=oMe) AdjustAlignmentPartyProtected(oMe,ALIGNMENT_GOOD,1); RemoveEffect(oTarget, eParal); bValid = TRUE; } //Get the next effect on the target GetNextEffect(oTarget); } if (bValid) { //Apply VFX Impact ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget); } }