RATDOG/_module/nss/qst_priests_01.nss

34 lines
697 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//::
//:: qst_priests_01.nss
//::
//:: Copyright (c) 2022 Project RATDOG
//::
//:://////////////////////////////////////////////
/*
Checks if the "Plotting of Priests" quest has
been started.
*/
//:://////////////////////////////////////////////
//::
//:: Created By: Jaysyn
//:: Created On: 20220618
//::
//:://////////////////////////////////////////////
#include "pqj_inc"
int StartingConditional()
{
//: Declare major variables
object oPC = GetPCSpeaker();
int nInt;
nInt = RetrieveQuestState("priests", oPC);
// nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYpriests");
if (nInt >= 1) return FALSE;
return TRUE;
}