Battledale_PRC8/_removed/nw_s0_webb.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

44 lines
1.3 KiB
Plaintext

///::///////////////////////////////////////////////
//:: 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
//:://////////////////////////////////////////////
#include "x2_inc_spellhook"
void main()
{
//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);
}
}