More quest persistence

More quest persistence & cleanup.
This commit is contained in:
Jaysyn904
2022-06-20 14:17:58 -04:00
parent 2105778d4c
commit e03053bd65
57 changed files with 14075 additions and 313 deletions

View File

@@ -6,8 +6,8 @@
//::
//:://////////////////////////////////////////////
/*
Makes sure the "Marthek the Madman" quest
has been started.
Makes sure the "Marthek the Madman" is on
stage one.
*/
//:://////////////////////////////////////////////
//::
@@ -27,7 +27,7 @@ int StartingConditional()
nInt = RetrieveQuestState("marthek", oPC);
// nInt = GetLocalInt(oPC, "NW_JOURNAL_ENTRYmarthek");
if (nInt >= 1) return TRUE;
if (nInt > 0 && nInt < 2) return TRUE;
return FALSE;
}