21/08/2021 01:27
Basta verificar se ele utiliza um VPN
Caso ele utilize uma VPN então faça esse ip ser banido também.
Caso ele utilize uma VPN então faça esse ip ser banido também.
Código:
public OnIncomingConnection(playerid, ip_address[], port)
{
new url[255];
format(url, sizeof(url), "blackbox.ipinfo.app/lookup/%s", ip_address);
HTTP(playerid, HTTP_GET, url, "", "OnPlayerCheckIP");
return 1;
}
forward OnPlayerCheckIP(index, response_code, data[]);
public OnPlayerCheckIP(index, response_code, data[])
{
if(response_code == 200)
{
SetPVarInt(index, "Proxy", (data[0] == 'Y' ? 1 : 0));
return 1;
}
return 0;
}
stock VPN_IsPlayerUsing(playerid) return GetPVarInt(playerid, "Proxy");