Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

12 lines
317 B
Plaintext

int StartingConditional()
{
object oPC=GetPCSpeaker();
effect eEffect=GetFirstEffect(oPC);
while(GetEffectType(eEffect)!=EFFECT_TYPE_INVALIDEFFECT)
{ // poll effects
if (GetEffectType(eEffect)==EFFECT_TYPE_POISON) return TRUE;
eEffect=GetNextEffect(oPC);
} // poll effects
return FALSE;
}