Battledale_PRC8/_removed/nw_s0_rmvblddef.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

56 lines
2.2 KiB
Plaintext

////::///////////////////////////////////////////////
//:: Remove Blindness / Deafness
//:: NW_S0_RmvBldDef.nss
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
All allies within 10ft of the cast point have
blindness and deafness removed.
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: June 29, 2001
//:://////////////////////////////////////////////
//:: VFX Pass By: Preston W, On: June 22, 2001
//:: Updated By: Preston W, On: June 29, 2001
void main()
{
//Declare major variables
object oTarget;
int nType;
effect eBlindDeaf;
//Declare personal impact visual effect.
effect eVis = EffectVisualEffect(VFX_IMP_REMOVE_CONDITION);
//Declare the spell shape, size and the location. Capture the first target object in the shape.
oTarget = GetFirstObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_MEDIUM, GetSpellTargetLocation());
//Cycle through the targets within the spell shape until an invalid object is captured.
while (GetIsObjectValid(oTarget))
{
//Make a faction check so that only friends are affected.
if (GetIsFriend(oTarget))
{
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_REMOVE_BLINDNESS_AND_DEAFNESS, FALSE));
//Get the first effect on the present target.
eBlindDeaf = GetFirstEffect(oTarget);
while(GetIsEffectValid(eBlindDeaf))
{
nType = GetEffectType(eBlindDeaf);
if (nType == EFFECT_TYPE_DEAF || nType == EFFECT_TYPE_BLINDNESS)
{
//Remove the effect if it matches the stated values
RemoveEffect(oTarget, eBlindDeaf);
//Apply the visual
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
}
//Get the next effect
GetNextEffect(oTarget);
}
}
//Select the next target within the spell shape.
oTarget = GetNextObjectInShape(SHAPE_SPHERE, RADIUS_SIZE_MEDIUM, GetSpellTargetLocation());
}
}