Ко всем forward
Code: Select all
forward Anticheat();
Ко всем public или в конец мода
Code: Select all
public Anticheat()
{
for(new i=GetMaxPlayers(); i!=0; )
{
i--;
if(IsPlayerConnected(i) && (GetSpeedKM(i) > 260))
{
SendClientMessage(i, 0xAFAFAFAA, "Вы кикнуты за Speedhack");
Kick(i);
}
}
}
в public OnGameModeInit
Code: Select all
SetTimer("Anticheat",2000,1);