11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
#include "quest_inc"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nSkill = GetLocalInt(OBJECT_SELF, "Diplomacy");
|
|
int nDC = GetAdjustedSkillDC(oPC);
|
|
|
|
if (GetIsSkillSuccessful(oPC, nSkill, nDC)) return TRUE;
|
|
return FALSE;
|
|
}
|