03.03.2013, 16:00
Hello, i have a Problem with my Anticheat System it ban to Users which have VIP-Weapons, here the code:
to give VIP Players Weapons.
Anticheat:
Код:
if(pInfo[i][pVipLevel] >= 4)
{
if(team[i] == TEAM_HUMAN)
{
SetPlayerArmour(i,95.0);
GivePlayerWeapon(i,28,700);
GivePlayerWeapon(i,26,100);
GivePlayerWeapon(i,18,20);
GivePlayerWeapon(i,34,500);
GivePlayerWeapon(i,41,3000);
}
}
Anticheat:
Код:
if(PRESSED(KEY_FIRE))
{
switch(GetPlayerWeapon(playerid))
{
case 2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18,26,27,28,32,35,36,37,38,39,40,41,42,43,44,45,46:
{
new reason[128];
new Admin[24] = "Katie";
format(reason,sizeof(reason),"Weapon hack %i",GetPlayerWeapon(playerid));
BanPlayer(playerid,reason,Admin);
SendClientMessage(playerid,-1,""chat"""«| You're banned from Zombie Escape [ZE]! |»");
SendClientMessage(playerid,-1,""chat"""«| You Want To Get Unbanned? Post An Unban-Appeal On Our Website: www.Zombie-Opr.tk |»");
SendClientMessage(playerid,-1,""chat"""«| Press F8 To Take An Picture! |»");
new busted[18];
format(busted, sizeof(busted), "~r~BUSTED!");
GameTextForPlayer(playerid, busted, 10000000, 3);
}
}
}

