17 lines
199 B
Plaintext
17 lines
199 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
int iQuest;
|
|
object oPC;
|
|
|
|
oPC = GetPCSpeaker();
|
|
iQuest = GetLocalInt(oPC,"Quest");
|
|
|
|
iResult = FALSE;
|
|
|
|
if (iQuest == 12)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|