SA-MP Forums Archive
TextDraw help - 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 help (/showthread.php?tid=497355)



TextDraw help - CroFoxX256 - 26.02.2014

Hi,
I made TextDraw "/rules /cmds /teles" in TextDrawEditor1.0 and i don't know why is it in this order:
Код:
/rules
/cmds
/teles
It should be
Код:
/rules /cmds /teles
picture: http://postimg.org/image/asb5ypo0j/

pawno:
Код:
	Textdraw5 = TextDrawCreate(5.000000, 430.000000, "/rules /cmds /teles");
	TextDrawAlignment(Textdraw5, 1);
	TextDrawBackgroundColor(Textdraw5, 255);
	TextDrawFont(Textdraw5, 2);
	TextDrawColor(Textdraw5, -1);
	TextDrawSetOutline(Textdraw5, 1);
	TextDrawSetProportional(Textdraw5, 1);
	TextDrawTextSize(Textdraw5, 0.320000, 1.200000);



Re: TextDraw help - iThePunisher - 26.02.2014

you should change this to set the textdraw wherever you want in the screen
Textdraw5 = TextDrawCreate(5.000000, 430.000000, "/rules /cmds /teles");


Re: TextDraw help - CroFoxX256 - 26.02.2014

It's on good place with good coordinates, i just don't know how to show it in this format
Код:
/rules /cmds /teles
not in this
Код:
/rules
/cmds
/teles
See a picture, i hope you understand me