SA-MP Forums Archive
[help] Connect Message - 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: [help] Connect Message (/showthread.php?tid=75256)



[help] Connect Message - borisblat - 30.04.2009

How can i do that if someone will connect my server some message will show up
but only the kid that connected will not see that massage?

thanks,


Re: [help] Connect Message - borisblat - 30.04.2009

can you please help me , sorry for the double post.



Re: [help] Connect Message - Andom - 30.04.2009

pawn Код:
public OnPlayerConnect(playerid)
{
   for(new i = 0; i < MAX_PLAYERS; i++)
   {
     if(IsPlayerConnected(i) && i != playerid)
     {
        SendClientMessage(i, COLOR_YELLOW, "Text");
     }    
   }
}



Re: [help] Connect Message - borisblat - 30.04.2009

thanks