EN4_PRC8/_module/nss/qst_c_11_1.nss

20 lines
266 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;
}
return iResult;
}