EN4_PRC8/_module/nss/qst_c_5orb3_2.nss

25 lines
449 B
Plaintext
Raw Normal View History

int StartingConditional()
{
int iResult;
int iQuest;
int iOrb;
int iStep;
object oPC;
oPC = GetPCSpeaker();
iQuest = GetLocalInt(oPC,"Quest");
iStep = GetLocalInt(oPC,"QuestStep");
iOrb = GetLocalInt(oPC,"OrbQuest");
iResult = FALSE;
//debug
//SendMessageToPC(oPC,"Quest: " + IntToString(iQuest) + " Orb " + IntToString(iOrb) + " Step " + IntToString(iStep));
if (iQuest == 5 && iOrb == 3 && iStep == 2)
iResult = TRUE;
return iResult;
}