Help me with anti bot-players
#19

Quote:
Originally Posted by RogueDrifter
View Post
There's one thing... after doing some searches i realized that the gpci id of fake clients contain more numbers rather than letters, above 30 that is, so i did something like this and so far 0 false positives and worked against most if not all fake players, Do this at OnPlayerConnect:
PHP Code:
public OnPlayerConnect(playerid)
{
    new 
TempId[80], TempNumb;
    
gpci(playeridTempIdsizeof(TempId));
    for(new 
0strlen(TempId); i++)
    {
        if(
TempId[i] >= '0' && TempId[i] <= '9')
        {
             
TempNumb++;
            }
        }
    if(
TempNumb >= 30)
    {
        new 
BotName[MAX_PLAYER_NAME];
        
GetPlayerName(BotNamesizeof(BotName));
        
format(TempIdsizeof(TempId), "Server kicked %s, reason: suspected bot.",BotName);
        
SendClientMessageToAll(-1,TempId);
        
Kick(playerid);
        }
    return 
1;

try this against them and let me know how it goes.
Thank you, this seems possible, I will try this. By the way, can I put your code in public OnIncomingConnection to kick the bots right after they are requesting a connection?
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)