21 lines
507 B
Plaintext
21 lines
507 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName persuade_check18
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 24/07/2002 19:56:31
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iDC = 18;
|
||
|
int iBonus = GetSkillRank(SKILL_PERSUADE, GetPCSpeaker());
|
||
|
if ((d20() + iBonus) >= iDC)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
return FALSE;
|
||
|
}
|
||
|
|