Quote:
Originally Posted by Riddick94
Still won't working.
pawn Код:
Textdraw[8] = TextDrawCreate(508.000000, 354.000000, "1.."); TextDrawBackgroundColor(Textdraw[8], 255); TextDrawFont(Textdraw[8], 2); TextDrawLetterSize(Textdraw[8], 0.370000, 1.100000); TextDrawColor(Textdraw[8], -1); TextDrawSetOutline(Textdraw[8], 0); TextDrawSetProportional(Textdraw[8], 1); TextDrawSetShadow(Textdraw[8], 1); TextDrawUseBox(Textdraw[8], 1); TextDrawBoxColor(Textdraw[8], 255); TextDrawTextSize(Textdraw[8], 524.000000, 0.000000);
What to do?
|
Are you use Zamaroht editor? Because there is a bug at the time of get the Y coords.
You have this:
pawn Код:
TextDrawTextSize(Textdraw[8], 524.000000, 0.000000);
Never will works because coord. Y is 0.000000. You have to modify 0.000000 to 5.000000 or 10.000000 and go test and test until it works.