Need help with anti speed hack
#1

how to create anti speed hack with car and without car
Reply
#2

have you made an attempt

have you even used the search function

https://sampforum.blast.hk/showthread.php?tid=166177
Reply
#3

Use GetPlayerVelocity and GetVehicleVelocity to check if it's higher than a certain amount.
If it's too high, they're most likely using speed cheats.
Reply
#4

Quote:
Originally Posted by CalvinC
Посмотреть сообщение
Use GetPlayerVelocity and GetVehicleVelocity to check if it's higher than a certain amount.
If it's too high, they're most likely using speed cheats.
But what if the player('s vehicle) is falling from e.g, Mount Chilliad?
Reply
#5

A vehicle should never reach more than 1000 MPH even when falling. So typically something such as:

pawn Код:
new LastHackReported[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
      LastHackReported[playerid] = 0;
}

public OnPlayerUpdate(playerid)
{
     if(IsPlayerInAnyVehicle(playerid) && GetVehicleSpeed(GetPlayerVehicleID(playerid)) >= 1000 && GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
     {
            LastHackReported[playerid]++;
            if(LastHackReported[playerid] == 5)
            {
                  CallLocalFunction("OnPlayerVehicleSpeedHack", "dd", playerid, GetPlayerVehicleID(playerid), GetVehicleSpeed(GetPlayerVehicleID(playerid));
                  LastHackReported[playerid] = 0;
            }
     }
 
     return 1;
}

stock GetVehicleSpeed(vehicleid)
{
    new Float:xPos[3];
    GetVehicleVelocity(vehicleid, xPos[0], xPos[1], xPos[2]);
    return floatround(floatsqroot(xPos[0] * xPos[0] + xPos[1] * xPos[1] + xPos[2] * xPos[2]) * 170.00);
}
forward OnPlayerVehicleSpeedHack(playerid, vehicleid, Float: MPH);
Something such as this should work(though it's untested). Basically it calls OnPlayerVehicleSpeedHack allowing you to take action appropriately.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)