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

31 lines
578 B
Plaintext

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