EN4_PRC8/_module/nss/qst_c_9_3.nss

25 lines
343 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
int iResult;
int iQuest;
object oPC;
string sQuestGiver;
iResult = TRUE;
oPC = GetPCSpeaker();
sQuestGiver = GetLocalString(oPC,"QuestGiver");
if (sQuestGiver != GetTag(OBJECT_SELF))
{
iResult = FALSE;
}
iQuest = GetLocalInt(oPC,"NHQuest");
if (iQuest == 6)
iResult = FALSE;
return iResult;
}