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

38 lines
860 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");
if (iQuestType == 2 || iQuestType == 7)
{
iResult = TRUE;
iIndex = 1;
sTag = GetLocalString(GetPCSpeaker(),"QuestMobZone") + "_" + GetLocalString(GetPCSpeaker(),"QuestCamp") + "_";
sWP = sTag + IntToString(iIndex);
oWP = GetObjectByTag(sWP);
//GetError("Checking " + GetTag(oWP));
while (GetIsObjectValid(oWP))
{
oMob = GetObjectByTag(sWP + "_S");
//GetError(GetTag(oMob) + "=" + GetName(oMob));
if (GetIsObjectValid(oMob))
iResult = FALSE;
iIndex++;
sWP = sTag + IntToString(iIndex);
oWP = GetObjectByTag(sWP);
}
}
return iResult;
}