10 lines
288 B
Plaintext
10 lines
288 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oMe=OBJECT_SELF;
|
|
object oMaster=GetLocalObject(oMe,"oMaster");
|
|
float fDist=GetDistanceBetween(oMaster,oMe);
|
|
if (GetArea(oMe)!=GetArea(oMaster)) fDist=1000.0;
|
|
if (GetPCSpeaker()!=oMaster&&fDist>=60.0) return TRUE;
|
|
return FALSE;
|
|
}
|