SA-MP Forums Archive
How to place Textdraw Without FS - 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: How to place Textdraw Without FS (/showthread.php?tid=483615)



How to place Textdraw Without FS - nrg700 - 27.12.2013

Someone can helpme?
How to place textdraw?
i always make textdraw with Zamaroht's TextDraw Editor because it's Easier


Re: How to place Textdraw Without FS - SRB - 27.12.2013

Код:
new Text:Textdraw; //add this at the top
    
    Textdraw = TextDrawCreate(490 ,1 , "YourText"); //change 490,1 to your place at the screen...
    TextDrawFont(Textdraw , 1);
    TextDrawLetterSize(Textdraw , 0.7, 3.0); //Change this to witch size you want...
    TextDrawColor(Textdraw , 0xff0000FF); //change this to which color you want...
    TextDrawSetOutline(Textdraw , false);
    TextDrawSetProportional(Textdraw , true);
    TextDrawSetShadow(Textdraw , 1);//add all this under public OnGameModeInit()

    TextDrawShowForPlayer(playerid, Textdraw);//add this under public OnPlayerConnect(playerid)
    TextDrawShowForAll(Textdraw);//add this under public OnPlayerConnect(playerid)



Re: How to place Textdraw Without FS - nrg700 - 02.01.2014

Thanks