EN6_PRC8/_module/nss/qst_c_prisoner.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

20 lines
386 B
Plaintext

#include "qst_convo"
int StartingConditional()
{
int iResult;
int iStep;
object oQuestNPC;
iResult = FALSE;
oQuestNPC=OBJECT_SELF;
iStep=GetLocalInt(oQuestNPC,"QuestStep");
if (iStep<1)
iStep=1;
if (GetLocalInt(oQuestNPC,"QuestStep" + IntToString(iStep) + "Type") == 4 && GetLocalInt(oQuestNPC,"QuestComplete") == 0 && !CheckMobs(oQuestNPC))
iResult=TRUE;
return iResult;
}