Getting rid of an anti-cheat or at least kill it
#2

If it bans, add a check for the ban.. such as:

from
pawn Код:
if(GetPlayerWeapon(playerid) == 38)
{
    Ban(playerid);
}
to

pawn Код:
if(GetPlayerWeapon( playerid ) == 38 && !IsPlayerAdmin( playerid ) )
{
    Ban( playerid );
}
or

pawn Код:
if(GetPlayerWeapon( playerid ) == 38 )
{
    if( !IsPlayerAdmin( playerid ) )
    {
        Ban( playerid );
    }
}
Reply


Messages In This Thread
Getting rid of an anti-cheat or at least kill it - by calzo2011 - 12.11.2011, 12:14
Re: Getting rid of an anti-cheat or at least kill it - by Snipa - 12.11.2011, 12:21
Re: Getting rid of an anti-cheat or at least kill it - by Jason_Dino - 12.11.2011, 12:22
Re: Getting rid of an anti-cheat or at least kill it - by [GOD]Dragonster82 - 12.11.2011, 12:22
Re: Getting rid of an anti-cheat or at least kill it - by Stefand - 12.11.2011, 12:52
Re: Getting rid of an anti-cheat or at least kill it - by calzo2011 - 12.11.2011, 13:55

Forum Jump:


Users browsing this thread: 1 Guest(s)