RATDOG/_module/nss/qst_aragnak_01.nss
Jaysyn904 a2d04fe81f Spawn persistence bugifx
Spawn persistence bugifx (Marthek & Spiders)
2022-06-27 18:19:57 -04:00

28 lines
608 B
Plaintext

//::///////////////////////////////////////////////
//:: qst_aragnak_01.nss
//:: Copyright (c) 2022 Project RATDOG
//:://////////////////////////////////////////////
/*
Checks that the "Aragnak the Red" is in
progress.
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 20220619
//:://////////////////////////////////////////////
#include "pqj_inc"
int StartingConditional()
{
//:: Declare major variables
object oPC = GetPCSpeaker();
int nInt;
nInt = RetrieveQuestState("aragnak", oPC);
if (nInt == 1) return TRUE;
return FALSE;
}