Curious Cheat
#6

I used this to stop a similar cheat on my server, maybe it will help you too:

pawn Код:
public OnUnoccupiedVehicleUpdate(vehicleid, playerid, passenger_seat, Float:new_x, Float:new_y, Float:new_z, Float:vel_x, Float:vel_y, Float:vel_z)
{  
    new Float:dist = GetVehicleDistanceFromPoint(vehicleid, new_x, new_y, new_z);
   
    if(dist > 15)
    {
        return 0;
    }
   
    return 1;
}
You may have false positives sometimes with paused players or players jumping out of cars/motorcycles but there's no kicking or baning involved so it's harmless.
Reply


Messages In This Thread
Curious Cheat - by Ygzeb - 23.02.2015, 20:49
Re: Curious Cheat - by Cookland - 23.02.2015, 21:32
Re: Curious Cheat - by Jake187 - 24.02.2015, 00:15
Re: Curious Cheat - by DizzyMofo - 25.02.2015, 00:59
Re: Curious Cheat - by billy123321 - 25.02.2015, 02:50
Re: Curious Cheat - by Whizion - 25.02.2015, 02:55

Forum Jump:


Users browsing this thread: 1 Guest(s)