RATDOG/_module/nss/qst_ch_altar_nf.nss
Jaysyn904 ee912d2da9 Quest persistence work
Quest persistence work.
2022-07-06 00:35:22 -04:00

30 lines
711 B
Plaintext

//::///////////////////////////////////////////////
//:: qst_ch_altar_nf.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Checks that the "Lost Altar" quest hasn't
been completed.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220702
//:://////////////////////////////////////////////
#include "pqj_inc"
int StartingConditional()
{
//: Declare major variables
object oPC = GetPCSpeaker();
int nInt;
//:: Inspect quest state
nInt = RetrieveQuestState("lostaltar", oPC);
//nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYlostaltar");
if (nInt >= 4)
return FALSE;
return TRUE;
}