25.10.2010, 03:25
Please someone show me what i got to do to make this team chat work for all my Teams not just TEAM_USA..But ovc only the teams can see there chat..
Код:
if(!strcmp(cmdtext, "/tc", true))
{
new string[128], Player[MAX_PLAYER_NAME];
GetPlayerName(playerid, Player, MAX_PLAYER_NAME);
format(string, 128, "(Team Chat): %s: %s", Player, cmdtext[2]);
for(new i=0; i<MAX_PLAYERS; i++) if(gTeam[i]==TEAM_USA) SendClientMessage(i, RED, string);
return 1;
}

