Initial Commit
Initial Commit [v1.32PRC8]
This commit is contained in:
24
_module/nss/qst_c_5orb3_2.nss
Normal file
24
_module/nss/qst_c_5orb3_2.nss
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user