SA-MP Forums Archive
teach me with this. - 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: teach me with this. (/showthread.php?tid=320889)



teach me with this. - Eljayar - 25.02.2012

Can someone teach me how to create a TxTdraw on all players like the server's forums and the server's name..


Re: teach me with this. - [ABK]Antonio - 25.02.2012

https://sampwiki.blast.hk/wiki/Category:...ions#Textdraws


Re: teach me with this. - John Rockie - 25.02.2012

pawn Код:
new Text:forumtext; //top

//OnGameModeInit
    forumtext = TextDrawCreate(32, 428, "Website Here"); //edit site here
    TextDrawAlignment(forumtext, 1);
    TextDrawFont(forumtext, 1);
    TextDrawLetterSize(forumtext, 0.399999,2.100000);
    TextDrawColor(forumtext, 0xAA76FFFF);
    TextDrawSetShadow(forumtext, 1);
    TextDrawSetProportional(forumtext, 2);
    TextDrawSetOutline(forumtext, 1);

//OnPlayerSpawn
TextDrawShowForPlayer(playerid, forumtext);
You can edit the location, what ever..
I recommend you use a TextDraw editor.
Look in the FS's