Help me with anti bot-players
#11

Quote:
Originally Posted by iSteve
View Post
one method is to check their IP and then set a limit,
lets suppose


Code:
#define MAX_CONNECTIONS_FROM_IP 5
public OnPlayerConnect(playerid)
{
	new num_players_on_ip = GetNumberOfPlayersOnThisIP(gPlayerInfo[playerid][pIp]);
	if(num_players_on_ip > MAX_CONNECTIONS_FROM_IP) 
       {
	    Kick( playerid );
	    return 1;
	}
}


stock GetNumberOfPlayersOnThisIP(test_ip[])
{
	new ip_count;
	foreach(Player,i) if(!strcmp(gPlayerInfo[i][pIp],test_ip)) ip_count++;
	return ip_count;
}
I don't know if this will work but every bot connects with a different IP.
It connects real quickly, you can see the log with the timestamp at this link, 50 bots can connect at the same time.
Reply


Messages In This Thread
Help me with anti bot-players - by DuyDang2412 - 28.01.2018, 13:29
Re: Help me with anti bot-players - by wallen - 28.01.2018, 13:40
Re: Help me with anti bot-players - by Hunud - 28.01.2018, 13:42
Re: Help me with anti bot-players - by DuyDang2412 - 28.01.2018, 13:47
Re: Help me with anti bot-players - by DuyDang2412 - 28.01.2018, 13:57
Re: Help me with anti bot-players - by iLearner - 28.01.2018, 14:00
Re: Help me with anti bot-players - by DuyDang2412 - 28.01.2018, 14:05
Re: Help me with anti bot-players - by Dayrion - 28.01.2018, 14:06
Re: Help me with anti bot-players - by DuyDang2412 - 28.01.2018, 14:15
Re: Help me with anti bot-players - by iSteve - 28.01.2018, 14:16
Re: Help me with anti bot-players - by DuyDang2412 - 28.01.2018, 15:19
Re: Help me with anti bot-players - by iSteve - 28.01.2018, 15:34
Re: Help me with anti bot-players - by DuyDang2412 - 28.01.2018, 15:38
Re: Help me with anti bot-players - by iSteve - 28.01.2018, 15:45
Re: Help me with anti bot-players - by DuyDang2412 - 28.01.2018, 15:48
Re: Help me with anti bot-players - by RogueDrifter - 28.01.2018, 16:33
Re: Help me with anti bot-players - by iLearner - 28.01.2018, 20:54
Re: Help me with anti bot-players - by RogueDrifter - 28.01.2018, 21:52
Re: Help me with anti bot-players - by DuyDang2412 - 29.01.2018, 03:04
Re: Help me with anti bot-players - by RogueDrifter - 29.01.2018, 03:10
Re: Help me with anti bot-players - by DuyDang2412 - 29.01.2018, 03:15
Re: Help me with anti bot-players - by RogueDrifter - 29.01.2018, 03:20
Re: Help me with anti bot-players - by iLearner - 29.01.2018, 06:45
Re: Help me with anti bot-players - by Mugalito - 29.01.2018, 13:27
Re: Help me with anti bot-players - by DuyDang2412 - 29.01.2018, 15:46
Re: Help me with anti bot-players - by Bolex_ - 29.01.2018, 15:50
Re: Help me with anti bot-players - by iLearner - 29.01.2018, 16:02
Re: Help me with anti bot-players - by RogueDrifter - 29.01.2018, 16:08
Re: Help me with anti bot-players - by DuyDang2412 - 30.01.2018, 04:19
Re: Help me with anti bot-players - by DuyDang2412 - 30.01.2018, 04:24

Forum Jump:


Users browsing this thread: 7 Guest(s)