EN4_PRC8/_module/nss/qst_c_5orb3_3.nss
Jaysyn904 b464d8da05 Initial Commit
Initial Commit [v1.32PRC8]
2025-04-03 13:38:45 -04:00

22 lines
332 B
Plaintext

int StartingConditional()
{
int iResult;
int iQuest;
int iOrb;
int iStep;
object oPC;
oPC = GetPCSpeaker();
iQuest = GetLocalInt(oPC,"Quest");
iStep = GetLocalInt(oPC,"QuestStep");
iOrb = GetLocalInt(GetPCSpeaker(),"OrbQuest");
iResult = FALSE;
if (iQuest == 5 && iOrb == 3 && iStep == 3)
iResult = TRUE;
return iResult;
}