[SOLVED]anti hack banning sometimes people that join the server ;s
#3

at the top
pawn Код:
new PlayerSpawned[MAX_PLAYERS];
OnPlayerSpawn
pawn Код:
PlayerSpawned[playerid] = 1;
OnPlayerConnect
pawn Код:
PlayerSpawned[playerid] = 0;
pawn Код:
public AntiWeaponHack()
{
new string[128], tmpname[MAX_PLAYER_NAME];
for (new i = 0; i < MAX_PLAYERS; i++)
{
  switch(GetPlayerWeapon(i))
  {
    case 9, 11, 12, 13, 17, 36, 37, 38, 39, 40, 42, 41, 43, 44, 45, 47:
    {
      if(PlayerSpawned[playerid]==1)
{
      GetPlayerName(i, tmpname, sizeof(tmpname));
      format(string, sizeof(string), "[ANTI-CHEAT] %s has been auto-banned for Weapon Hacking.", tmpname);
      SendClientMessageToAll(GAME_ENGINE, string);
      print(string);
          BanEx(i, weapon);
}
    }
  }
}

return 1;
}
UNTESTED!
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)