Posts: 366
Threads: 113
Joined: Feb 2014
Posts: 128
Threads: 48
Joined: Jul 2014
Reputation:
0
Textdraw0 = TextDrawCreate(548.000000, 54.833248, "-");
TextDrawLetterSize(Textdraw0, 0.238995, 1.016664);
TextDrawAlignment(Textdraw0, 1);
TextDrawColor(Textdraw0, 0xffffffff);
TextDrawSetShadow(Textdraw0, 0);
TextDrawSetOutline(Textdraw0, 1);
TextDrawBackgroundColor(Textdraw0, 51);
TextDrawFont(Textdraw0, 3);
TextDrawSetProportional(Textdraw0, 1);
Posts: 99
Threads: 26
Joined: Jun 2014
You need to make the script show the player your textdraw with the code I provided for you.
Код:
TextDrawShowForPlayer(playerid, Textdraw0);
if you have done that, it is because you used "-" for the message you want the Textdraw to show.
[EDIT]: If you want to show it when they spawn. Place the code under Public OnPlayerSpawn(playerid);
Posts: 4
Threads: 1
Joined: Dec 2014
Reputation:
0
You must add TextDrawShowForPlayer(playerid, Text:text) at the end.