SA-MP Forums Archive
[Ajuda] Textdraw - 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: [Ajuda] Textdraw (/showthread.php?tid=581948)



Textdraw - maxblaya01 - 16.07.2015

Alguem sabe como crio um textdraw no canto da tela para aparecer o nick do player ? , tipo aparecer meu nick no canto da tela


Re: Textdraw - iTakelot - 16.07.2015

Primeiramente voce tem que ter uma textdraw jб criada bo canto da tela neh, depois voce usa TextdrawSetString como no exemplo

PHP код:
new Text:himessage;
 
public 
OnGameModeInit()
{
    
himessage TextDrawCreate(1.05.6"Hi, how are you?"); 
    return 
1;
}
 
public 
OnPlayerConnect(playerid)
{
    new 
newtext[41], name[MAX_PLAYER_NAME];
    
GetPlayerName(playeridnameMAX_PLAYER_NAME);
    
format(newtextsizeof(newtext), "Hi %s, how are you?"name);
    
TextDrawSetString(himessagenewtext);   
    
TextDrawShowForPlayer(playeridhimessage);
    return 
1;