Spammer without an ID, avoiding all 'anti' systems
#2

I would be a bot,every original SA-MP client does have a player id in the server

Btw,you can use this function to detect ip in a string:

Код:
stock stringContainsIP(string[])
{
    new dotCount;
    for(new i; string[i] != EOS; ++i)
    {
        if(('0' <= string[i] <= '9') || string[i] == '.' || string[i] == ':')
        {
            if((string[i] == '.') && (string[i + 1] != '.') && ('0' <= string[i - 1] <= '9'))
            {
                ++dotCount;
            }
            continue;
        }
    }
    return (dotCount > 2);
}
Reply


Messages In This Thread
closed. - by Rodri99 - 08.02.2016, 14:25
Re: Spammer without an ID, avoiding all 'anti' systems - by K0P - 08.02.2016, 14:37
Re: Spammer without an ID, avoiding all 'anti' systems - by Rodri99 - 08.02.2016, 14:39
Re: Spammer without an ID, avoiding all 'anti' systems - by K0P - 08.02.2016, 14:43

Forum Jump:


Users browsing this thread: 1 Guest(s)