HoS_PRC8/_mod/_module/nss/has_disease.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

12 lines
318 B
Plaintext

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