SA-MP Forums Archive
[Question] 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)
+--- Thread: [Question] TextDraw (/showthread.php?tid=327600)



[Question] TextDraw - tony_fitto - 21.03.2012

Hey guys,

I've always wondered how everyone can get such amazing TextDraws, cause I've never seen a good edit out here.
In case anyone knows a good one please where can I find it?


Re: [Question] TextDraw - .FuneraL. - 21.03.2012

I'll post you a style TextDraw, test it on your server.

Create :

pawn Код:
new Text:Textdrawtest;
In OnGameModeInit :

pawn Код:
Textdrawtest = TextDrawCreate(1.0, 433.0, "Text");
    TextDrawBackgroundColor(Textdrawtest, 255);
    TextDrawFont(Textdrawtest, 2);
    TextDrawLetterSize(Textdrawtest, 0.500000, 1.000000);
    TextDrawBoxColor(Textdrawtest,0x00000050);
    TextDrawColor(Textdrawtest, 0xFF0000FF);
    TextDrawSetOutline(Textdrawtest, 0);
    TextDrawSetProportional(Textdrawtest, 1);
    TextDrawSetShadow(Textdrawtest, 1);
    for(new i; i < MAX_PLAYERS; i ++)
    {
        if(IsPlayerConnected(i))
        {
            TextDrawShowForPlayer(i, Textdrawtest);
        }
    }
In OnPlayerConnect :

pawn Код:
TextDrawShowForPlayer(playerid, Textdrawtest);
Test It.


Re: [Question] TextDraw - tony_fitto - 21.03.2012

Thanks alot mate, but what I'm more looking for are a TextDraw Editor where I can make great textdraws on insted of guessing the cordinates of the textdraws I make...


Re: [Question] TextDraw - .FuneraL. - 21.03.2012

Textdraw Editor ? Use the Zamaroht TextDraw Editor, Use the search, is a hint xD


Re: [Question] TextDraw - Bogdan1992 - 21.03.2012

https://sampforum.blast.hk/showthread.php?tid=117851


Re: [Question] TextDraw - tony_fitto - 21.03.2012

Quote:
Originally Posted by .FuneraL.
Посмотреть сообщение
Textdraw Editor ? Use the Zamaroht TextDraw Editor, Use the search, is a hint xD
Alright, I will check that one out. Btw I know where the search button is :P

Quote:
Originally Posted by Bogdan1992
Посмотреть сообщение
Thanks alot for that tips, I will make sure to test that out :P