SA-MP Forums Archive
Joining the server - 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: Joining the server (/showthread.php?tid=190766)



Joining the server - Dannu13 - 16.11.2010

Hy! Where can I fetch a file server, which then would show if someone joined the server

Thank You!

****** Glossary


Re: Joining the server - Sinner - 16.11.2010

pawn Код:
public OnPlayerConnect(playerid)
{
        new string[64], name[24];
        GetPlayerName(playerid, name, sizeof(name));
        format(string, sizeof(string), "%s has joined the server", name);
        SendClientMessageToAll(COLOR, string);
        return 0;
}
Hope that helped.