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; }