Alguem sabe como crio um textdraw no canto da tela para aparecer o nick do player ? , tipo aparecer meu nick no canto da tela
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.0, 5.6, "Hi, how are you?");
return 1;
}
public OnPlayerConnect(playerid)
{
new newtext[41], name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
format(newtext, sizeof(newtext), "Hi %s, how are you?", name);
TextDrawSetString(himessage, newtext);
TextDrawShowForPlayer(playerid, himessage);
return 1;
}