9 lines
190 B
Plaintext
9 lines
190 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
int nBluff=GetSkillRank(SKILL_INTIMIDATE,oPC);
|
|
int nRoll=d20()+nBluff;
|
|
if (nBluff>15) return TRUE;
|
|
return FALSE;
|
|
}
|