30 lines
648 B
Plaintext
30 lines
648 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: qst_chk_tribitz03.nss
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Checks for stage #3 of the "Quests for
|
|
Tribitz".
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Jaysyn
|
|
//:: Created On: 20220701
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "pqj_inc"
|
|
|
|
int StartingConditional()
|
|
{
|
|
//: Declare major variables
|
|
object oPC = GetPCSpeaker();
|
|
int nInt;
|
|
|
|
//:: Inspect quest state
|
|
nInt = RetrieveQuestState("tribitz", oPC);
|
|
if (!(nInt == 3))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|