9 lines
236 B
Plaintext
9 lines
236 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
object oTarget=GetLocalObject(oPC,"oTarget");
|
|
string sID=GetLocalString(oTarget,"sTeamID");
|
|
if (sID!=GetLocalString(oPC,"sTeamID")) return TRUE;
|
|
return FALSE;
|
|
}
|