Labels? - 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: Labels? (
/showthread.php?tid=405705)
Labels? -
Theghost1 - 07.01.2013
Hii im newbie here. i would ask you. wher i can get tutorial off creating label system?
Re: Labels? -
DaRk_RaiN - 07.01.2013
If you mean Text Labels, here's the wiki page and i don't think any one made a tutorial since its easy to make
https://sampwiki.blast.hk/wiki/Create3DTextLabel
Re: Labels? -
Theghost1 - 07.01.2013
Mmmmm thx btw how to send msg to player who connect to my server?
Re: Labels? -
Fabio11 - 07.01.2013
pawn Код:
public OnPlayerConnect(playerid)
{
SendClientMessage(playerid, 0xFFFFFFAA, "WELCOMEEEE");
return 1;
}
Re: Labels? -
Djean - 07.01.2013
Quote:
Originally Posted by Theghost1
Mmmmm thx btw how to send msg to player who connect to my server?
|
Here you go.
pawn Код:
public OnPlayerConnect(playerid)
{
SendClientMessage(playerid, 0xFFFFFFAA, "PUT YOUR TEXT HERE THAT YOU WANT WHEN A PLAYER JOIN THE SERVER");
return 1;
}