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