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