12.12.2013, 11:42
Remove the following and tell me what you get.
Commenting them out with /* and */ will be safer instead of actually removing them.
Commenting them out with /* and */ will be safer instead of actually removing them.
pawn Code:
if(strcmp(ban_s, ConnIP, false) == 0 && exceed == 1 )
{
Same_IP++;
if(Same_IP > SAME_IP_CONNECT)
{
Ban(playerid);
Same_IP=0;
format(string, sizeof(string), "%s a primit ban pentru bot flood!", playername);
SendAdminBroadcast(string);
}
}
else
{
Same_IP=0;
}