Best way to ban players?
#9

Quote:
Originally Posted by pds2k12
Посмотреть сообщение
Since alot of useful include has been produced by people in SA-MP, I prefer you blocking Proxy/VPN to avoid hackers coming back using free VPN

Lookup Include: https://sampforum.blast.hk/showthread.php?tid=460410

You could simply add this code in your gamemode, I've tested this and it is preety accurate.
pawn Код:
public OnLookupComplete(playerid)
{
    if(IsProxyUser(playerid))
    {
        SendClientMessage(playerid, -1, "[Proxy Detected] We Don't Allow Proxy/VPN, please turn it off and connect again.")
        Kick(playerid);
    }
    return 1;
}
Also best way is making your own registration/login system and ban them using that.
Hey that looks good!! thank you a lot.
I have a registration/login system, but what if a cheater is using an unregistered nick?

Quote:
Originally Posted by woot
Посмотреть сообщение
There's not much more you can do except banning their IP addresses. On the other side, how about trying to improve your anticheat instead?
I have already implemented some anticheats, but some cheats are hard to detect accurately by script.
Reply


Messages In This Thread
Best way to ban players? - by Gryphus One - 17.10.2013, 01:18
Re: Best way to ban players? - by tyler12 - 17.10.2013, 01:24
Re: Best way to ban players? - by Sublime - 17.10.2013, 01:54
Respuesta: Best way to ban players? - by Gryphus One - 18.10.2013, 20:07
Re: Best way to ban players? - by Phaze - 19.10.2013, 01:15
Respuesta: Re: Best way to ban players? - by Gryphus One - 20.10.2013, 15:15
Re: Best way to ban players? - by Patrick - 20.10.2013, 15:22
Re: Best way to ban players? - by woot - 20.10.2013, 15:25
Respuesta: Re: Best way to ban players? - by Gryphus One - 20.10.2013, 15:31
Re: Best way to ban players? - by Patrick - 20.10.2013, 15:32

Forum Jump:


Users browsing this thread: 1 Guest(s)