SA-MP Forums Archive
[PEDIDO] Nomes - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [PEDIDO] Nomes (/showthread.php?tid=264380)



[PEDIDO] Nomes - DreyPT - 25.06.2011

Ora boas pessoal!
Й o seguinte eu ando a procura de um tutorial ou filtersript que sу aparece-se o nome em cima! Sem o colete e a vida! Alguйm me ajuda?

Cumpzz,
dReY ^^



Re: [PEDIDO] Nomes - Erickini - 25.06.2011

Vixi nem sei ou isso deve tб mal explicado oO


Re: [PEDIDO] Nomes - DreyPT - 25.06.2011

Й como estб nesse trailer
Na parte da Polнcia!
[ame]http://www.youtube.com/watch?v=SDmGmwAIMw0[/ame]


Re: [PEDIDO] Nomes - RockFire - 26.06.2011

PHP код:
public OnPlayerSpawn(playerid)
{
    new 
nome[MAX_PLAYER_NAME];
    for(new 
0!= GetMaxPlayers; ++i)
    {
        
GetPlayerName(i,nome,sizeof(nome));
        
ShowPlayerNameTagForPlayer(playerid,i,false);
        
SetPlayerChatBubble(inome, -1100.010000);
    }
    return 
true;




Re: [PEDIDO] Nomes - [S]trong - 26.06.2011

pawn Код:
new Text3D:DAEW[MAX_PLAYERS];
public OnGameModeInit()
{
    ShowNameTags(false);
    return true;
}

public OnPlayerDisconnect(playerid,reason)
{
    Delete3DTextLabel(DAEW[playerid]);
    return true;
}

public OnPlayerSpawn(playerid)
{
    new Name[24];
    GetPlayerName(playerid,Name,sizeof(Name));
    DAEW[playerid] = Create3DTextLabel(Name,0xFFFFFFFF,0.0,0.0,0.0,100.00,GetPlayerVirtualWorld(playerid),1);
    Attach3DTextLabelToPlayer(DAEW[playerid],playerid, 0.0, 0.0,1.3);
    return true;
}
faзa assim, atй por que nгo vai precisar atualizar diferente do chatbubble e nгo vai precisar fazer um loop toda vez que alguйm der spawn.


Re: [PEDIDO] Nomes - DreyPT - 26.06.2011

Obrigado, quando tiver jente irei testar se dб certo!


Re: [PEDIDO] Nomes - Shadoww5 - 26.06.2011

PHP код:
public OnPlayerDisconnect(playerid,reason)
{
    
Delete3DTextLabel(DAEW[playerid]);
    return 
true;

Й preciso fazer isto ?


Re: [PEDIDO] Nomes - steki. - 26.06.2011

Sim.


Re: [PEDIDO] Nomes - Shadoww5 - 26.06.2011

Por que ? '-'


Re: [PEDIDO] Nomes - steki. - 26.06.2011

Pq vai ficar criando a cada vez que alguйm entrar, uma hora vai exceder o limite, lagar o server.

Coloca esse codigo no GM, fica logando e deslogando e vai pro 0,0,0 pra vocк ver ;x