29 lines
656 B
Plaintext
29 lines
656 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: qst_ch_dirty02.nss
|
||
|
//:: Copyright (c) 2022 Project RATDOG
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Checks that the "Dirty Deeds" quest was
|
||
|
refused. (Stage #2)
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Jaysyn
|
||
|
//:: Created On: 20220702
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "pqj_inc"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
//: Declare major variables
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int nInt;
|
||
|
|
||
|
//:: Inspect quest state
|
||
|
nInt = RetrieveQuestState("dirtydeed", oPC);
|
||
|
if (!nInt == 2)
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|