HoS_PRC8/_mod/_module/nss/has_poison.nss

12 lines
317 B
Plaintext
Raw Normal View History

2024-11-25 19:36:07 -05:00
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;
}