EN4_PRC8/_module/nss/qst_cq1_c1.nss

21 lines
350 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
int iResult;
int iVariance;
iVariance = GetLocalInt(OBJECT_SELF,"QuestVariance");
iResult = FALSE;
if (iVariance == 1)
{
if (GetLocalInt(GetPCSpeaker(),"QuestStep") == 2)
iResult = TRUE;
} else {
if (GetLocalInt(GetPCSpeaker(),"QuestStep") == 3)
iResult = TRUE;
}
return iResult;
}