21.09.2010, 21:33
Assuming playerid variable stores the player to hide:
To make him white (chatlines) use the white color code instead of GetPlayerColor(playerid)
Cheers
Код:
// Hide player name above head
for(new i=0;i<MAX_PLAYERS;i++) {
if(i != playerid) { ShowPlayerNameTagForPlayer(i, playerid, 0); }
}
// Hide player radar blip
SetPlayerColor(playerid, ( GetPlayerColor(playerid) & 0xFFFFFF00 ));
Cheers

