SA-MP Forums Archive
Textdraw. - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Textdraw. (/showthread.php?tid=259728)



Textdraw. - iGetty - 05.06.2011

Is there a way to create just one textdraw to fill the full screen black?


Re: Textdraw. - xRyder - 05.06.2011

Yes. Us the boxes and expand them all the way on x axis and y axis.(Sorry I haven't wrote that before :/)


Re: Textdraw. - iGetty - 05.06.2011

Please can you help me, instead of just "yes" :/


Re: Textdraw. - xRyder - 05.06.2011

Here, I've done it really quickly:

pawn Код:
new Text:Textdraw0;
    // Create the textdraws:
    Textdraw0 = TextDrawCreate(650.000000, -11.000000, "~n~~n~~n~");
    TextDrawBackgroundColor(Textdraw0, 255);
    TextDrawFont(Textdraw0, 1);
    TextDrawLetterSize(Textdraw0, 0.500000, 17.000000);
    TextDrawColor(Textdraw0, -1);
    TextDrawSetOutline(Textdraw0, 0);
    TextDrawSetProportional(Textdraw0, 1);
    TextDrawSetShadow(Textdraw0, 1);
    TextDrawUseBox(Textdraw0, 1);
    TextDrawBoxColor(Textdraw0, 255);
    TextDrawTextSize(Textdraw0, -21.000000, -30.000000);