Changed folder name.

Changed folder name.
This commit is contained in:
Jaysyn904
2022-10-07 21:08:37 -04:00
parent 1c33c2843e
commit 8d97886c3f
7060 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
void main()
{
object oPC=GetEnteringObject();
if (!GetIsPC(oPC)) return;
//Remove blindness from the PC
effect eLoop=GetFirstEffect(oPC);
while (GetIsEffectValid(eLoop))
{
//Remove all non-standard effects...
if(GetEffectType(eLoop)!=EFFECT_TYPE_HASTE ||
GetEffectType(eLoop)!=EFFECT_TYPE_POLYMORPH ||
GetEffectType(eLoop)!=EFFECT_TYPE_VISUALEFFECT ||
GetEffectType(eLoop)!=EFFECT_TYPE_IMMUNITY)
{ RemoveEffect(oPC, eLoop); }
eLoop=GetNextEffect(oPC);
}
}