34 lines
697 B
Plaintext
34 lines
697 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//::
|
||
|
//:: 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;
|
||
|
}
|