Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

40 lines
1.3 KiB
Plaintext

///////////////////////////////////////////////////
// Beholder Ray: On exit //
///////////////////////////////////////////////////
/*
Removes the silence effect caused by the
beholder's central eye ray.
*/
///////////////////////////////////////////////////
// Created By: Zarathustra217 //
// Created On: Okt 7. 2002 //
///////////////////////////////////////////////////
#include "NW_I0_SPELLS"
void main()
{
object oTarget = GetExitingObject();
int bValid = FALSE;
effect eAOE;
eAOE = GetFirstEffect(oTarget);
while (GetIsEffectValid(eAOE) && bValid == FALSE)
{
//Debug String
//AssignCommand(oTarget, SpeakString("Effect is valid"));
if (GetEffectCreator(eAOE) == GetAreaOfEffectCreator())
{
//Debug String
//AssignCommand(oTarget, SpeakString("Effect creator is true"));
if(GetEffectType(eAOE) == EFFECT_TYPE_SILENCE)
{
//Debug String
//AssignCommand(oTarget, SpeakString("Effect type is silence"));
//AssignCommand(oTarget, SpeakString("Removing effects"));
RemoveEffect(oTarget, eAOE);
bValid = TRUE;
}
}
eAOE = GetNextEffect(oTarget);
}
}