03.09.2012, 16:43
pawn Код:
stock MoneyHack(playerid)
{
if(GetPlayerMoney(playerid) >= 5000000) //change it as you want this is the amount that if the player exceeded he gets banned its currently on '5 million'
{
Reason =3;
return 1;
}
return 0;
}
pawn Код:
stock AntiCheat(playerid)
{
if(Action_Taken == 1 && Reason >= 1)
{
Ban(playerid);
return 1;
}
if(Action_Taken == 2 && Reason >= 1)
{
Kick(playerid);
return 1;
}
return 0;
}
But it's a cool script, nice job.