27 lines
613 B
Plaintext
27 lines
613 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: qst_chk_outcst03.nss
|
||
|
//:: Copyright (c) 2022 Project RATDOG
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Checks for completion of the "Outcasts" quest.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Jaysyn
|
||
|
//:: Created On: 20220618
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "pqj_inc"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
int nInt;
|
||
|
//nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYoutcasts");
|
||
|
nInt = RetrieveQuestState("outcasts", oPC);
|
||
|
if (nInt >= 3)
|
||
|
return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
}
|