Joining the server
#1

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

Thank You!

****** Glossary
Reply
#2

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.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)