14 lines
216 B
Plaintext
14 lines
216 B
Plaintext
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iDC = 25;
|
||
|
int iBonus = GetSkillRank(SKILL_PERSUADE, GetPCSpeaker());
|
||
|
|
||
|
if (!((d20() + iBonus) >= iDC))
|
||
|
return FALSE;
|
||
|
|
||
|
else
|
||
|
return TRUE;
|
||
|
}
|