Persistent Quest update

Persistent Quest update & bugfixes.
This commit is contained in:
Jaysyn904
2022-06-29 23:13:47 -04:00
parent 99a8071aeb
commit 5bb45371fc
22 changed files with 567 additions and 218 deletions

View File

@@ -0,0 +1,29 @@
//::///////////////////////////////////////////////
//:: qst_chk_outcst02.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Checks that the "Outcasts" was refused.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220628
//:://////////////////////////////////////////////
#include "pqj_inc"
int StartingConditional()
{
//: Declare major variables
object oPC = GetPCSpeaker();
int nInt;
//:: Inspect quest state
nInt = RetrieveQuestState("outcasts", oPC);
if (!nInt == 2)
return FALSE;
//nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYoutcasts");
return TRUE;
}