11 lines
150 B
Plaintext
11 lines
150 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetLocalInt(GetPCSpeaker(),"QuestVariance")==2)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|