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

36 lines
762 B
Plaintext

#include "en5_misc"
#include "nw_i0_tool"
int StartingConditional()
{
int iResult;
int iQuestType;
int iIndex;
string sTag;
string sWP;
object oWP;
object oMob;
iResult = FALSE;
iQuestType = GetLocalInt(GetPCSpeaker(),"QuestType");
if (iQuestType == 1 || iQuestType == 6)
{
iResult = TRUE;
sTag = GetLocalString(GetPCSpeaker(),"QuestMob");
//SendMessageToPC(GetFirstPC(),"QuestMob=" + sTag);
oMob = GetObjectByTag(sTag);
if (GetIsObjectValid(oMob))
iResult = FALSE;
if (GetLocalInt(GetPCSpeaker(),"QuestHideItem") == 1 && !HasItem(GetPCSpeaker(),GetLocalString(GetPCSpeaker(),"QuestItem")))
iResult=FALSE;
if (GetLocalInt(GetPCSpeaker(),"QuestHideItem") == 0)
iResult=FALSE;
}
return iResult;
}