TextDrawTextSize bug - 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: TextDrawTextSize bug (
/showthread.php?tid=490962)
TextDrawTextSize bug -
TheSy - 28.01.2014
When I use this function TextDrawTextSize, it does not work and it feels as if it was TextDrawSetSelectable ...
pawn Код:
Textdraw5 = TextDrawCreate(457.000000, 338.416809, "Quitter");
TextDrawTextSize(Textdraw5, 2.000000, 3.600000);
TextDrawLetterSize(Textdraw5, 0.248499, 1.308333);
TextDrawAlignment(Textdraw5, 1);
TextDrawColor(Textdraw5, -16776961);
TextDrawSetShadow(Textdraw5, 0);
TextDrawSetOutline(Textdraw5, 1);
TextDrawBackgroundColor(Textdraw5, 51);
TextDrawFont(Textdraw5, 1);
TextDrawSetProportional(Textdraw5, 1);
TextDrawSetSelectable(Textdraw5, 1);
Re: TextDrawTextSize bug -
MahdiGames - 28.01.2014
Try this:
Код:
new Text:MyTextdraw;
public OnGameModeInit()
{
MyTextDraw = TextDrawCreate(100.0, 33.0,"Example TextDraw");
TextDrawTextSize(MyTextDraw, 2.0, 3.6);
return 1;
}
_________________
xXx Stunt Paradise Awesome
Server IP:
Click Here!
Hosted Tab Game-MP for 10 Euro / per month
Hosted Tab + Server host 50 slots + Control Panel for 15 Euro
Skype:
MahdiAsali
€10 Euro for Hosted List
Re: TextDrawTextSize bug -
TheSy - 28.01.2014
I have already my textdraw.
Re: TextDrawTextSize bug -
TheSy - 29.01.2014
Top, bottom, and left it going, but when I go right it not work ...