SA-MP Forums Archive
Connect Message On Screen - 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: Connect Message On Screen (/showthread.php?tid=179771)



Connect Message On Screen - <Weponz> - 28.09.2010

How to have a message on screen like /announce when people connect to the server?


Re: Connect Message On Screen - Libra_PL - 28.09.2010

Use GameTextForAll or GameTextForPlayer? Or you can also make textdraw...


Re: Connect Message On Screen - HyperZ - 28.09.2010

Try this:
Код:
public OnPlayerConnect(playerid)
{
    GameTextForPlayer(playerid,"You'r message here!", 5000, 3);
    return 1;
}



Re: Connect Message On Screen - [Lsrcr]Rafa - 28.09.2010

pawn Код:
public OnPlayerConnect(playerid)
{
     GameTextForPlayer(playerid,"Welcome please read the ~n~~>~~r~/rules",6000,0);
     return 1;
}
U mean on this ?? o_0