Help me with anti bot-players
#10

one method is to check their IP and then set a limit,
lets suppose


Код:
#define MAX_CONNECTIONS_FROM_IP 5
new pip[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
       GetPlayerIp(playerid,pip[playerid],16);
	new num_players_on_ip = GetNumberOfPlayersOnThisIP(pip[playerid]);
	if(num_players_on_ip > MAX_CONNECTIONS_FROM_IP) 
       {
	    Kick( playerid );
	    return 1;
	}
}


stock GetNumberOfPlayersOnThisIP(test_ip[])
{
	new ip_count;
        for(new i;i<MAX_PLAYERS;i++)
        {
	if(!strcmp(pip[i],test_ip)) ip_count++;
	return ip_count;
        }
}
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: 2 Guest(s)