02.07.2015, 09:44
(
Последний раз редактировалось sscarface; 02.07.2015 в 13:47.
)
--------------
if(GetPlayerAnimationIndex(playerid) == 958 || GetPlayerAnimationIndex(playerid) == 959)
{
if(GetPlayerWeapon(playerid) != 46)
{
new antimsg[128], hackerr[MAX_PLAYER_NAME];
GetPlayerName(playerid, hackerr, MAX_PLAYER_NAME);
format(antimsg, sizeof(antimsg), "%s (%d) Has Been Banned By The Anti-Cheat (AC) | Reason: Airbreak Hacks.", hackerr, playerid);
SendClientMessageToAll(0x00FFFFFF, antimsg);
SendClientMessage(playerid, 0xFF0000AA, "You Have Been Banned By The Anti-Cheat (AC) | Reason: Airbreak Hacks.");
Info[playerid][Banned] = 1;
SendClientMessage(playerid, 0xFFC400AA, "If You Feel That You Are Wrongly Banned Feel Free To Post An Appeal In Our Forums: Yourforumhere");
BanEx(playerid, "Airbreak Hacks");
}
}
I use this script for anti air breaking:
pawn Код:
|
Well, It doesn't kick me when im airbreaking. Anyways, I fixed mine. I have to decreased MAX_FOOT_SPEED.
But I want to know how does this work ^^ you have posted? |
if(GetPlayerAnimationIndex(playerid) == 958 || GetPlayerAnimationIndex(playerid) == 959)
{
if(GetPlayerWeapon(playerid) != 46)
{
new antimsg[128], hackerr[MAX_PLAYER_NAME];
GetPlayerName(playerid, hackerr, MAX_PLAYER_NAME);
format(antimsg, sizeof(antimsg), "%s (%d) Has Been Kicked By The Anti-Cheat (AC) | Reason: Airbreak Hacks.", hackerr, playerid);
SendClientMessageToAll(0x00FFFFFF, antimsg);
SendClientMessage(playerid, 0xFF0000AA, "You Have Been Kicked By The Anti-Cheat (AC) | Reason: Airbreak Hacks.");
Info[playerid][Banned] = 1; // NOTE: Delete this and put your own variable here
Kick(playerid);
}
}
for(new i; i < MAX_PLAYERS; i++) // Start the loop
{
//if(pData[i][pAdmin] < 1)
//{
if(GetPlayerSurfingVehicleID(i) == INVALID_VEHICLE_ID && GetPlayerState(i) == PLAYER_STATE_ONFOOT)
{
if(GetPlayerAnimationIndex(i) == 958 || GetPlayerAnimationIndex(i) == 959)
{
if(GetPlayerWeapon(i) != 46)
{
new string[126];
format(string,sizeof(string),"SERVER ANTI-CHEAT: %s (%d) CHEATING (AIRBREAK CHEATS).", pname, ID);
SendMessageToAdmins(RED,string);
return 1;
}
}
}
//}
}