Anti Weapon HAck
#1

Hi All
I Need A Anti Weapon Hack For Sobit
All anti Weapon Hacks Kick Player because in server, player buy weapon form weapon shop and the anti cheat think player use weapon hack
i Need A Anti Weapon Hack For Sobit
Reply
#2

http://forum.sa-mp.com/search.php?searchid=8272284
Reply
#3

Quote:
Originally Posted by M0HAMMAD
Посмотреть сообщение
Hi All
I Need A Anti Weapon Hack For Sobit
All anti Weapon Hacks Kick Player because in server, player buy weapon form weapon shop and the anti cheat think player use weapon hack
i Need A Anti Weapon Hack For Sobit
In your case, I'd suggest blocking default weapon shops anyway. But if you want to make it not ban people in weapon shops, do following:
When cheat is detected, check if player is in range of seller, and is in interior. That would allow a little bit of cheat, but better than nothing.
Reply
#4

If you want to kick/ban the players ,who uses minigun/rocketlauncher.

pawn Код:
public OnPlayerUpdate(playerid)
{
    for(new i=0;i<MAX_PLAYERS;i++)
       {
         if(IsPlayerConnected(i))
          {
            if(GetPlayerWeapon(i) == 38||GetPlayerWeapon(i) == 35) //"38" is for minigun and "35" is for rocket launcher (RPG)
             {
               Kick(i);
             }
           }
        }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)