20 lines
364 B
Plaintext
20 lines
364 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;
|
||
|
SetCustomToken(98,GetName(GetObjectByTag(sQuestGiver)));
|
||
|
}
|
||
|
return iResult;
|
||
|
}
|
||
|
|