9 lines
225 B
Plaintext
9 lines
225 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oMod=GetModule();
|
|
string sID=GetLocalString(OBJECT_SELF,"sTeamID");
|
|
object oLead=GetLocalObject(oMod,"oTeamLead"+sID);
|
|
if (oLead==GetPCSpeaker()) return TRUE;
|
|
return FALSE;
|
|
}
|