Journal & quest persistence

Journal & quest persistence
This commit is contained in:
Jaysyn904
2022-06-18 01:53:20 -04:00
parent a5776c69e1
commit 9e1780d1bc
80 changed files with 1972 additions and 45731 deletions

View File

@@ -0,0 +1,27 @@
//::///////////////////////////////////////////////
//:: jchusband3.nss
//:: Copyright (c) 2022 Rappan Athuk
//:://////////////////////////////////////////////
/*
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220617
//:://////////////////////////////////////////////
#include "pqj_inc"
int StartingConditional()
{
object oPC = GetPCSpeaker();
int nInt;
//nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYhusband");
nInt = RetrieveQuestState("husband", oPC);
if (nInt >= 3)
return TRUE;
return FALSE;
}