9 lines
212 B
Plaintext
9 lines
212 B
Plaintext
|
#include "quest_inc"
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int nDC = GetAdjustedSkillDC(oPC);
|
||
|
if (GetIsSkillSuccessful(oPC, SKILL_INTIMIDATE, nDC)) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|