14 lines
231 B
Plaintext
14 lines
231 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
object oPC;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
oPC=GetPCSpeaker();
|
||
|
|
||
|
if (GetLocalInt(oPC,"QuestResponse") == 3 && GetLocalString(oPC,"QuestNPC") == GetTag(OBJECT_SELF))
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|