11 lines
229 B
Plaintext
11 lines
229 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (GetLocalInt(GetPCSpeaker(),"Overall2NotAccepted") == 1 && GetLocalString(GetPCSpeaker(),"Overall1NPC") == GetTag(OBJECT_SELF))
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|