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

12 lines
327 B
Plaintext

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