2022-06-19 23:39:17 -04:00
|
|
|
//::///////////////////////////////////////////////
|
|
|
|
//::
|
|
|
|
//:: qst_spiders_03.nss
|
|
|
|
//::
|
|
|
|
//:: Copyright (c) 2022 Project RATDOG
|
|
|
|
//::
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
/*
|
|
|
|
Checks if the "Spiders" quest has been finished.
|
|
|
|
*/
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//::
|
|
|
|
//:: Created By: Jaysyn
|
|
|
|
//:: Created On: 20220618
|
|
|
|
//::
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "pqj_inc"
|
|
|
|
|
|
|
|
int StartingConditional()
|
|
|
|
{
|
|
|
|
//:: Declare major variables
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
int nInt;
|
|
|
|
|
|
|
|
nInt = RetrieveQuestState("spiders", oPC);
|
|
|
|
// nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYspiders");
|
|
|
|
|
2022-11-19 00:37:42 -05:00
|
|
|
if (!(nInt == 3)) return FALSE;
|
2022-06-19 23:39:17 -04:00
|
|
|
|
2022-06-29 23:13:47 -04:00
|
|
|
return TRUE;
|
2022-06-19 23:39:17 -04:00
|
|
|
}
|