17 lines
217 B
Plaintext
17 lines
217 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
int iQuest;
|
|
object oPC;
|
|
|
|
oPC = GetPCSpeaker();
|
|
iQuest = GetLocalInt(oPC,"EvilQuest");
|
|
|
|
iResult = FALSE;
|
|
|
|
if (iQuest == 1 || iQuest == 2)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|