9 lines
230 B
Plaintext
9 lines
230 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
int nQuest=GetLocalInt(oPC,"nGrubbinsQuest");
|
||
|
int nPersuasion=GetSkillRank(SKILL_PERSUADE,oPC);
|
||
|
if (nQuest==1&&nPersuasion>0) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|