SA-MP Forums Archive
Textdraw Problem - 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 Problem (/showthread.php?tid=365888)



Textdraw Problem - diablo16 - 04.08.2012

Hi i have a problem i want to move the blue textdraw like in the picture. Please help me.

Here is the texdraw code :

Код:
Recly = TextDrawCreate(605.0, 30.0, " ");
	TextDrawAlignment(Recly, 0);
	TextDrawBackgroundColor(Recly, 0x6AF7E1FF);
	TextDrawFont(Recly, 1);
	TextDrawLetterSize(Recly, 0.339999, 1.100000);
	TextDrawColor(Recly, 0x0000ff99);
	TextDrawSetOutline(Recly, 1);
	TextDrawSetProportional(Recly, 1);
	TextDrawSetShadow(Recly, 1);



Re: Textdraw Problem - Ranama - 04.08.2012

You'll have to change

pawn Код:
TextDrawCreate(605.0, 30.0, " ");// this (605.0 and 30.0) these are the cordinates of where the text draw is
//desplayed, use a texdrawcreator or just change them a bit yourself, I think it will work if you di it something like this:

Recly = TextDrawCreate(620.0, 15.0, " ");
    TextDrawAlignment(Recly, 0);
    TextDrawBackgroundColor(Recly, 0x6AF7E1FF);
    TextDrawFont(Recly, 1);
    TextDrawLetterSize(Recly, 0.339999, 1.100000);
    TextDrawColor(Recly, 0x0000ff99);
    TextDrawSetOutline(Recly, 1);
    TextDrawSetProportional(Recly, 1);
    TextDrawSetShadow(Recly, 1);
if that is not the right, you could change it yourself to get it right,

Hope i helped


Re: Textdraw Problem - Gamer_007 - 04.08.2012

Код:
Recly = TextDrawCreate(520.000000,12.000000, " ");
Replace this line.It may help u


Re: Textdraw Problem - [MWR]Blood - 04.08.2012

You could use this to create your textdraws. http://forum.sa-mp.com/showthread.ph...extdraw+editor


Re: Textdraw Problem - RelaxCafe - 04.08.2012

I suggest you leave it where it is. Armour, and breath capacity will show and ruin it..


Re: Textdraw Problem - diablo16 - 04.08.2012

Ty all for your help and suggestions !