57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
|
///::///////////////////////////////////////////////
|
||
|
//:: Invisibility Sphere: On Enter
|
||
|
//:: NW_S0_InvSphA.nss
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
All allies within 15ft are rendered invisible.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Preston Watamaniuk
|
||
|
//:: Created On: Jan 7, 2002
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "x2_inc_spellhook"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
/*
|
||
|
Spellcast Hook Code
|
||
|
Added 2003-06-23 by GeorgZ
|
||
|
If you want to make changes to all spells,
|
||
|
check x2_inc_spellhook.nss to find out more
|
||
|
|
||
|
*/
|
||
|
|
||
|
if (!X2PreSpellCastCode())
|
||
|
{
|
||
|
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// End of Spell Cast Hook
|
||
|
|
||
|
|
||
|
//Declare major variables
|
||
|
object oTarget = GetEnteringObject();
|
||
|
|
||
|
effect eInvis = EffectInvisibility(INVISIBILITY_TYPE_NORMAL);
|
||
|
effect eVis = EffectVisualEffect(VFX_DUR_INVISIBILITY);
|
||
|
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
|
||
|
|
||
|
effect eLink = EffectLinkEffects(eInvis, eVis);
|
||
|
eLink = EffectLinkEffects(eLink, eDur);
|
||
|
|
||
|
if(GetIsFriend(oTarget, GetAreaOfEffectCreator()))
|
||
|
// * don't try and make dead people invisible
|
||
|
if (GetIsDead(oTarget) == FALSE)
|
||
|
{
|
||
|
//Fire cast spell at event for the specified target
|
||
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_INVISIBILITY_SPHERE, FALSE));
|
||
|
//Apply the VFX impact and effects
|
||
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLink, oTarget);
|
||
|
}
|
||
|
}
|
||
|
|