14 lines
212 B
Plaintext
Raw Permalink Normal View History

#include "nw_i0_tool"
int StartingConditional()
{
int iDC = 24;
int iBonus = GetSkillRank(SKILL_LORE, GetPCSpeaker());
if (!((d20() + iBonus) >= iDC))
return FALSE;
else
return TRUE;
}