12.03.2019, 14:15
I used ShowPlayerNameTagForPlayer function to hid only name above player's head
I used this function inside OnPlayerUpdate
and it hides whole nametag -_-
How i can hide only player name?
P.S: I used a dynamic label text, that's why name is visible
I used this function inside OnPlayerUpdate
PHP код:
public OnPlayerUpdate(playerid){
for(new i=0;i<MAX_PLAYERS;i++){
if(!IsPlayerConnected(i)) continue;
ShowPlayerNameTagForPlayer(playerid, i, 0);
}
return 1;
}
How i can hide only player name?
P.S: I used a dynamic label text, that's why name is visible