16.06.2012, 22:27 
	
	
	pawn Code:
CMD:radio(playerid, params[])
{
if(!strlen(params)) return SendClientMessage(playerid, -1, "Use: /radio [texto]");
new string[80],Nome;
GetPlayerName(playerid,Nome,MAX_PLAYER_NAME);
for(new i; i<MAX_PLAYERS; i++)
{
format(string, sizeof(string), "{CHAT GANG} Jogador %s diz: %s, cвmbio!",Nome,params[0]);
if(IsPlayerConnected(i) && EquipeGG[i] == EquipeGG[playerid])
{
SendClientMessage(i,-1, string);
}
}
return 1;
}


