16 lines
250 B
Plaintext
16 lines
250 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
int iQuest;
|
|
|
|
iQuest = GetLocalInt(OBJECT_SELF,"QuestVariance");
|
|
|
|
iResult = FALSE;
|
|
|
|
//SendMessageToPC(GetFirstPC(),"Variance = " + IntToString(iQuest));
|
|
if (iQuest == 10)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|