20 lines
347 B
Plaintext
20 lines
347 B
Plaintext
#include "utl_i_sqluuid"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
int iQuest;
|
|
int iOverallQuest;
|
|
object oPC;
|
|
|
|
oPC = GetPCSpeaker();
|
|
iQuest = GetLocalInt(oPC,"Quest");
|
|
iOverallQuest = SQLocalsUUID_GetInt(GetPCSpeaker(),"OverallQuest");
|
|
|
|
iResult = FALSE;
|
|
|
|
if (iQuest == 11 && iOverallQuest == 3)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
} |