Anti speed hacks
#1

I've tried making anti speed hacks
pawn Код:
public CheckHacks(playerid)
{
    new string[128];
    if(GetVehicleSpeed(GetPlayerVehicleID(playerid)) > 300)
    {
        if(SpeedHackWarns[playerid] >= 0 && SpeedHackWarns[playerid] < 2)
        {
            SpeedHackWarns[playerid] ++;
            format(string,sizeof(string),"[SERVER] Speed hack detection. Warning : %d/3.",SpeedHackWarns[playerid]);
            SendClientMessage(playerid,COLOR_ADMIN,string);
            return 1;
        }
        if(SpeedHackWarns[playerid] == 2)
        {
            SpeedHackWarns[playerid] =0;
            format(string,sizeof(string),"[SERVER] Speed hack detection. Warning : %d/3.",SpeedHackWarns[playerid]);
            SendClientMessage(playerid,COLOR_ADMIN,string);
            Banning[playerid] =1;
            SetTimer("BanPlayer",700,0);
            format(string,sizeof(string),"[AUTO ADMIN] %s(%d) has been automatically banned by our anti-cheat. Reason : Speed Hacks.",PlayerName(playerid),playerid);
            SendClientMessageToAll(COLOR_ADMIN,string);
            return 1;
        }
       return 1;
      }
  return 1;
}
Stock :
pawn Код:
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);
}
pawn Код:
SetTimerEx("CheckSpeed", 100, true, "i", playerid);
This is what I've exactly done with the help of a tutorial.
I want it to warn a player when his speed gets at 300 or above.
I tried to go at that speed using hacks, but it didn't find anything.

Hope someone would help me,
Thanks.
Reply


Messages In This Thread
Anti speed hacks - by rakshith122 - 09.03.2014, 10:11
Re: Anti speed hacks - by rakshith122 - 09.03.2014, 10:25
Re: Anti speed hacks - by rakshith122 - 09.03.2014, 11:14
Re: Anti speed hacks - by rakshith122 - 09.03.2014, 11:43
Re: Anti speed hacks - by rakshith122 - 09.03.2014, 15:40
Re: Anti speed hacks - by Pottus - 09.03.2014, 16:08

Forum Jump:


Users browsing this thread: 1 Guest(s)