10.09.2011, 19:05
Faзa apenas assim:
pawn Код:
public OnFilterScriptInit()
{
return SetTimer("checkBots", 500, true);
}
checkBots();
public checkBots()
{
for(new i; i != MAX_PLAYERS; ++i) if(!GetPlayerPing(i))
{
Kick(i);
}
return true;
}