28 lines
618 B
Plaintext
28 lines
618 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=GetLocalInt(oPC, "NW_JOURNAL_ENTRYaragnak");
|
||
|
|
||
|
if (nInt == 1) return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
}
|