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