18 lines
292 B
Plaintext
18 lines
292 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
int iQuest;
|
|
string sQuestGiver;
|
|
|
|
iQuest = GetLocalInt(GetPCSpeaker(),"Quest");
|
|
sQuestGiver = GetLocalString(GetPCSpeaker(),"QuestGiver");
|
|
|
|
iResult = FALSE;
|
|
|
|
if (iQuest > 0 && sQuestGiver == GetTag(OBJECT_SELF))
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|
|
|