SA-MP Forums Archive
TextDraw, only box - 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, only box (/showthread.php?tid=354658)



TextDraw, only box - Roko_foko - 27.06.2012

Hi,
I want to make a Textdraw that doesn't have text inside, only box.
I want that it covers everything under and right from coordinates: x=0,y=230
I did it like this:
Код:
 	gTD[3]=TextDrawCreate(0,230,"_");
	TextDrawUseBox(gTD[3],1);
 	TextDrawBoxColor(gTD[3],COLOR_BLACK);
 	TextDrawTextSize(gTD[3],640,250);
but it only covers one line.


Re: TextDraw, only box - Vince - 27.06.2012

Use TextDrawLetterSize to make it higher.


Re: TextDraw, only box - Roko_foko - 27.06.2012

Thank you.