23.02.2020, 04:13
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.
Attach3DTextLabelToPlayer(MeuText, playerid, 0.0, 0.0, 0.3); //anexar o Label no jogador
Update3DTextLabelText(MeuText, 0x008080FF, str); //atualizar a label com o ID
Delete3DTextLabel(MeuText) // destruir a label se o jogador desconectar ou algo assim.
estб ai so estudar sobre um pouco mais de https://sampwiki.blast.hk/wiki/Attach3DTextLabelToPlayer
|
public OnGameModeInit()
{
ShowNameTags(0);
return 1;
}
new Text3D:playerID[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
new str[6];
format(str, sizeof(str), "%d", playerid);
playerID[playerid] = Create3DTextLabel(str, 0x1E90FFFF, 0, 0, 0, 10, 0);
Attach3DTextLabelToPlayer(playerID[playerid], playerid, 0.0, 0.0, 0.1);
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
Delete3DTextLabel(playerID[playerid]);
return 1;
}
estб ai so estudar sobre um pouco mais de https://sampwiki.blast.hk/wiki/Attach3DTextLabelToPlayer
|