OnPlayerConnect Problem...
#9

Quote:
Originally Posted by admantis
Посмотреть сообщение
What is not working? It did no effect?
No effect...

Edit: I added a debug...
pawn Код:
public OnPlayerConnect(playerid)
{
    //MySQL stuff here...
   
    if(IsPlayerBanned(playerid))
    {
        return Kick(playerid);
    }
    else
    {
        for(new i;i<MAX_PLAYERS;i++)
        {
            if(IsPlayerAdmin(i) || PlayerData[i][AdminLevel] > 1)
            {
                printf("[DEBUG] %s Joined", PlayerName(i));
                format(string,sizeof string,"%s(%d) Has joined %s (IP: %s)", PlayerName(playerid), playerid, SERVER_NAME, PlayerIP(playerid));
                SendClientMessageToAdmins(COLOR_GREY, string);
                return 1;
            }
            else
            {
                printf("[DEBUG] %s Joined", PlayerName(i));
                format(string,sizeof string,"%s(%d) Has joined %s", PlayerName(playerid), playerid, SERVER_NAME);
                SendClientMessageToAll(COLOR_GREY, string);
                return 1;
            }
        }
        return 1;
    }
    return 1;
}
This got printed:
Код:
A banned player connect:
[02:59:06] Incoming connection: 5.229.94.154:51132
[02:59:06] [join] Unknown123 has joined the server (0:5.229.94.154)
[02:59:06] [part] Unknown123 has left the server (0:2)
[02:59:06] [DEBUG]  Joined


A player who is not banned connect:
[02:59:06] Incoming connection: 5.229.94.154:51132
[02:59:06] [join] Unknown123 has joined the server (0:5.229.94.154)
[02:59:06] [part] Unknown123 has left the server (0:2)
[02:59:06] [DEBUG] Unknown123 Joined
Reply


Messages In This Thread
OnPlayerConnect Problem... - by Unknown123 - 06.03.2011, 00:32
Re: OnPlayerConnect Problem... - by grand.Theft.Otto - 06.03.2011, 00:42
Re: OnPlayerConnect Problem... - by admantis - 06.03.2011, 00:46
Re: OnPlayerConnect Problem... - by Unknown123 - 06.03.2011, 00:47
Re: OnPlayerConnect Problem... - by Marricio - 06.03.2011, 00:50
Re: OnPlayerConnect Problem... - by admantis - 06.03.2011, 00:52
Re: OnPlayerConnect Problem... - by Unknown123 - 06.03.2011, 00:52
Re: OnPlayerConnect Problem... - by admantis - 06.03.2011, 00:54
Re: OnPlayerConnect Problem... - by Unknown123 - 06.03.2011, 00:55
Re: OnPlayerConnect Problem... - by admantis - 06.03.2011, 01:00

Forum Jump:


Users browsing this thread: 2 Guest(s)