11.11.2010, 06:41
try it like this
pawn Код:
if (weaponid > 1 || pSpecialAction == SPECIAL_ACTION_USEJETPACK)
{
if(!GetPVarInt(i,"HeavyWeapon")){
// Illegal weapon
TogglePlayerControllable(i, 0);
SendClientMessage(i, COLOR_LIGHTRED, "Anticheat: You have been banned due to suspected cheating.");
SendClientMessage(i, COLOR_LIGHTRED, "Anticheat: Please contact an admin oon the forum if you feel this is in error.");
SendClientMessage(i, COLOR_RED, "iBot Anticheat 0.6 by Jofi");
//PlayerInfo[i][pLocked] = 1;
OnPlayerUpdate(i);
//GetPlayerIp(i, banip, sizeof(banip));
//BanAdd(4, PlayerInfo[i][pSQLID], banip, 38);
GetPlayerName(i, plname, sizeof(plname));
format(string, sizeof(string), "AdmCmd: %s was banned by [AntiHack]bot, reason: weapon hack", plname);
Ban(i);
SendClientMessageToAll(COLOR_LIGHTRED, string);
}
}