//:://///////////////////////////////////////////// //:: Web: On Exit //:: NW_S0_WebB.nss //:: Copyright (c) 2001 Bioware Corp. //::////////////////////////////////////////////// /* Creates a mass of sticky webs that cling to and entangle targets who fail a Reflex Save Those caught can make a new save every round. Movement in the web is 1/5 normal. The higher the creatures Strength the faster they move within the web. */ //::////////////////////////////////////////////// //:: Created By: Preston Watamaniuk //:: Created On: Aug 8, 2001 //::////////////////////////////////////////////// //:: modified by mr_bumpkin Dec 4, 2003 #include "prc_alterations" void main() { DeleteLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR"); SetLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR", SPELL_SCHOOL_CONJURATION); //Get the object that is exiting the AOE object oTarget = GetExitingObject(); //PrintString("SPELL DEBUG STRING ********** " + "Entering Web On Exit" + GetName(oTarget)); //int bValid = FALSE; //Search through the valid effects on the target. effect eAOE = GetFirstEffect(oTarget); while (GetIsEffectValid(eAOE))// && bValid == FALSE) { //If the effect was created by the Web then remove it if (GetEffectCreator(eAOE) == GetAreaOfEffectCreator()) { if(GetEffectSpellId(eAOE) == SPELL_WEB) { RemoveEffect(oTarget, eAOE); } } eAOE = GetNextEffect(oTarget); } DeleteLocalInt(OBJECT_SELF, "X2_L_LAST_SPELLSCHOOL_VAR"); // Getting rid of the integer used to hold the spells spell school }