Textdraw Font isn't changing! - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Textdraw Font isn't changing! (
/showthread.php?tid=639282)
Textdraw Font isn't changing! -
maximthepain - 14.08.2017
Hello everyone! I need help..
I'm creating a global textdraw, showing it as usuall with all the functions just as sa:mp wiki says.
The textdraw font is not changing

and I dont have an idea. Anyone know what can affect textdraw like that?
Some code:
Код:
Forum = TextDrawCreate(557.000000, 407.000000, "TEXT");
TextDrawBackgroundColor(Forum, 255);
TextDrawFont(Forum, 0);
TextDrawLetterSize(Forum, 0.600000, 3.000000);
TextDrawColor(Forum, COLOR_WHITE);
TextDrawSetOutline(Forum, 1);
TextDrawSetProportional(Forum, 1);
(this under OnGameModeInit)
Re: Textdraw Font isn't changing! -
Kane - 14.08.2017
Put TextDrawFont underneath. See if it fixes it.
Re: Textdraw Font isn't changing! -
maximthepain - 14.08.2017
Quote:
Originally Posted by Arthur Kane
Put TextDrawFont underneath. See if it fixes it.
|
not fixed..
Re: Textdraw Font isn't changing! -
maximthepain - 14.08.2017
UPDATE
I have partly fixed the issue.
Moving this to player textdraw fixed it..