[Ajuda] Tirar nome do player
#1

Estou criando um servidor de rp e queria sabe se tem geito de tirar o nome do player de cima dele e deixa apenas o id sem usa a funзгo ShowNameTags(0) pois ela tira tudo.
Reply
#2

Tem nгo.

Mas tem um jeito pra tudo, crie uma Label com o texto que vocк quiser e fixe ela na cabeзa do jogador. Mas claro, ainda vai precisar utilizar o ShowNameTags(false)
Reply
#3

Tente usar essas funзхes:

PHP Code:
Attach3DTextLabelToPlayer(MeuTextplayerid0.00.00.3); //anexar o Label no jogador

Update3DTextLabelText(MeuText0x008080FFstr);  //atualizar a label com o ID

Delete3DTextLabel(MeuText// destruir a label se o jogador desconectar ou algo assim. 
Reply
#4

estб ai so estudar sobre um pouco mais de https://sampwiki.blast.hk/wiki/Attach3DTextLabelToPlayer
Reply
#5

Quote:
Originally Posted by IgorYan
View Post
estб ai so estudar sobre um pouco mais de https://sampwiki.blast.hk/wiki/Attach3DTextLabelToPlayer
Ja consegui manin
Reply
#6

PHP Code:
public OnGameModeInit()
{
    
ShowNameTags(0);
    return 
1;
}
new 
Text3D:playerID[MAX_PLAYERS];
public 
OnPlayerConnect(playerid)
{
    new 
str[6];
    
format(strsizeof(str), "%d"playerid);
    
playerID[playerid] = Create3DTextLabel(str0x1E90FFFF000100);
    
Attach3DTextLabelToPlayer(playerID[playerid], playerid0.00.00.1);
    return 
1;    
}
public 
OnPlayerDisconnect(playeridreason)
{
    
Delete3DTextLabel(playerID[playerid]);
    return 
1;

Quote:
Originally Posted by IgorYan
View Post
estб ai so estudar sobre um pouco mais de https://sampwiki.blast.hk/wiki/Attach3DTextLabelToPlayer
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)