7 lines
290 B
Plaintext
7 lines
290 B
Plaintext
int StartingConditional()
|
|
{
|
|
if (GetLocalInt(GetPCSpeaker(), "ClientSpawned") == FALSE && GetLocalInt(OBJECT_SELF, "Client") == TRUE) return TRUE;
|
|
if (GetLocalInt(OBJECT_SELF, "Escorted") == TRUE && GetLocalInt(OBJECT_SELF, "EventEscorted") == TRUE) return TRUE;
|
|
return FALSE;
|
|
}
|