[Ajuda] Textdraw
#1

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

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;

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)