03.08.2015, 08:50
Try this, if you do it this way the player will keep their color at the chat while having their map blip invisible.
pawn Код:
foreach(new i : Player)
{
if(GetPlayerTeam(i) != GetPlayerTeam(playerid) continue;
SetPlayerMarkerForPlayer( i, playerid, ( GetPlayerColor( playerid ) & 0xFFFFFF00 ) );
SetPlayerMarkerForPlayer( playerid, i, ( GetPlayerColor( i ) & 0xFFFFFF00 ) );
}