15.07.2011, 12:35
So yesterday I had a problem with the anti cheat and I now know what is causing it. When the anti cheat is on everyone gets R5 admin, including new accounts. Can anyone help me?
EDIT: It's like it cancels out the ResetVariables I have to prevent this...
pawn Код:
SetTimer("AntiCheat", 1000, true);
pawn Код:
forward AntiCheat();
pawn Код:
public AntiCheat()
{
foreach(Player, i)
{
if(IsPlayerConnected(i) && GetPlayerSpecialAction(i) == SPECIAL_ACTION_USEJETPACK && PlayerInfo[i][Admin] < 1)
{
Kick(i);
}
}
}