Textdraws Help
#1

Hey.

When I add a textdraw to my server using a built in filterscript which helps create Textdraws I create the textdraw and then put it in my gamemode, I go ingame and see that it says New Textdraw next to the box.
When I remove the New Textdraw text from the script, I load the gamemode up and the textdraw is smaller.

How can I fix this and have only the Box?

Here is one of the textdraws.

Textdraw0 = TextDrawCreate(583.000000, 148.000000, "New Textdraw");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 1);
TextDrawLetterSize(Textdraw0, 0.500000, 1.000000);
TextDrawColor(Textdraw0, -1);
TextDrawSetOutline(Textdraw0, 0);
TextDrawSetProportional(Textdraw0, 0);
TextDrawSetShadow(Textdraw0, 1);
TextDrawUseBox(Textdraw0, 1);
TextDrawBoxColor(Textdraw0, 255);
TextDrawTextSize(Textdraw0, 414.000000, 501.000000);
Reply
#2

use an underscore as your text

Код:
Textdraw0 = TextDrawCreate(583.000000, 148.000000, "_");
underscore turns into a space.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)