30.08.2011, 21:49
Minha situaзгo estб complicada, jб tentei de tudo, os bots continuam ocupando slots do meu servidor.
Olhem o Anti-Bot que eu montei mesmo assim nгo funciona:
Grato!
Olhem o Anti-Bot que eu montei mesmo assim nгo funciona:
pawn Код:
public OnPlayerConnect(playerid)
{
new PlayerIp[16][2], cons;
GetPlayerIp(playerid, PlayerIp[0], 16);
for(new i; i < MAX_PLAYERS; i++)
{
GetPlayerIp(i, PlayerIp[1], 16);
if(strcmp(PlayerIp[0], PlayerIp[1], true) == 0)
{
cons++;
}
}
if(cons > 3)
{
new s[126];
format(s,126,"banip %s",PlayerIp[0]);
SendRconCommand(s); Ban(playerid);
}
////////////////////////////////////////////////////
new PlayerIP[16]; GetPlayerIp(playerid,PlayerIP,24);
if(strcmp(PlayerIP,"255.255.255.255",true) == 0)
{
SendRconCommand("banip 255.255.255.255");
Ban(playerid);
}
return 1;
}
Grato!