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