9 lines
248 B
Plaintext
9 lines
248 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
if (GetLocalInt(oPC,"nQuestRH1")>0) return TRUE;
|
||
|
else if (GetLocalInt(oPC,"nQuestRH2")>0) return TRUE;
|
||
|
else if (GetLocalInt(oPC,"nQuestRH3")>0) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|