SA-MP Forums Archive
Simple help please :) - 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: Simple help please :) (/showthread.php?tid=145071)



Simple help please :) - johnnyc - 30.04.2010

i need with help how i can put a server name or something there and if i can make it colored and change the fonts ?

[img width=1024 height=630]/imageshack/img217/2136/95988857.png[/img]


Re: Simple help please :) - [MWR]Blood - 30.04.2010

I don't think you can.


Re: Simple help please :) - johnnyc - 30.04.2010

i can but i dont know how, i already saw alot servers have things like that on that place / other places


Re: Simple help please :) - CAR - 30.04.2010

Top
pawn Код:
new Text:Server;
OnGameModeInit
pawn Код:
Server = TextDrawCreate(543.0, 22.0, "SERVERNAME");
TextDrawSetShadow(Server, 0);
TextDrawSetOutline(Server, 2);
TextDrawLetterSize(Server, 0.6, 1.8);
TextDrawFont(Server, 3);
OnPlayerConnect
pawn Код:
TextDrawShowForPlayer(playerid, Server);
For colors Usage: ~r~ for red and ~b~ for blue look on the wiki for more colors


Re: Simple help please :) - johnnyc - 30.04.2010

Thanks alot dude it worked perfectly.