20 lines
266 B
Plaintext
20 lines
266 B
Plaintext
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;
|
|
}
|
|
|