20.07.2009, 23:07
This is a "useful function" or snippet. It's pointless as a filterscript, as if you just loaded it nothing would happen!
Also, you don't need the various defines at the top of the script, and the main section can go.. So really you're left with:
Also, you don't need the various defines at the top of the script, and the main section can go.. So really you're left with:
pawn Код:
stock MobbxPingKick(playerid)
{
if(GetPlayerPing(playerid) > 300) Kick(playerid);
}
pawn Код:
stock MobbxPingBan(playerid)
{
if(GetPlayerPing(playerid) > 5000) Ban(playerid);
}