17/07/2023 10:49 
	
	
	
		uma vez eu fiz uma função para isto
Playerid = id para ignorar
MsgColor = cor
TextParams = texto
	
	
	
	
Playerid = id para ignorar
MsgColor = cor
TextParams = texto
Código:
//  SendClientMessageToAll com exceção de id
    stock PlayerSendClientMessageToAll(playerid, MsgColor, TextParams[])
    {
        if(strlen(TextParams) < 1) return 0;
       
        new MsgText[144];
        format(MsgText, sizeof(MsgText), TextParams);
        for(new x = 0; x < MAX_PLAYERS; x++) //ou foreach(new i: Players)
        {
            if(!IsPlayerConnected(x))
                continue;
            if(playerid == x)
                continue;
            SendClientMessage(x, MsgColor, MsgText);
        }
        return 1;
    }
 
	   
	

