25.07.2010, 16:22
Hi, I have LuxAdmin v1.5, then i connect to server it kick's me becouse of High Ping, what i need to do that it couldn't kick me? It have to kick player's except Admin's or VIP's!
if(IsPlayerLuxAdminLevel(playerid, 1) || IsPlayerVipMember(playerid)) return 1;
public PingKick()
{
if(ServerInfo[MaxPing] != 0)
{
PingPos++; if(PingPos > PING_MAX_EXCEEDS) PingPos = 0;
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IsPlayerLuxAdminLevel(playerid, 1) || IsPlayerVipMember(playerid)) continue;
// The rest of the LuxAdmin code.
}
}
}