RATDOG/_module/nss/qst_gntslave_01.nss

29 lines
686 B
Plaintext
Raw Normal View History

//::///////////////////////////////////////////////
//:: qst_gntslave_01.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Checks that the "Giant Slaver" quest hasn't
been finished yet.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220619
//:://////////////////////////////////////////////
#include "pqj_inc"
int StartingConditional()
{
//: Declare major variables
object oPC = GetPCSpeaker();
int nInt;
nInt = RetrieveQuestState("giantslaver", oPC);
// nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYgiantslaver");
if (nInt <= 2) return TRUE;
return FALSE;
}