19.09.2014, 19:08
Create a stock and put in TextDrawCreate, just like this
Then, put what you want in your textdraw (shadow, box ..)
https://sampwiki.blast.hk/wiki/TextDraw
I hope that I helped you.
pawn Код:
new PlayerTextdraw[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
LoadPlayerTextdraw(playerid);
TextDrawShowForPlayer(playerid, PlayerTextdraw[playerid]);
return 1;
}
stock LoadPlayerTextdraw(playerid)
{
PlayerTextdraw[playerid] = TextDrawCreate(240.0,580.0,"Hello, log in the server");
return 1;
}
https://sampwiki.blast.hk/wiki/TextDraw
I hope that I helped you.