28.01.2011, 00:33
Thanks and you mean something like this? xD
pawn Код:
//Any Where
public AntiBot()
{
for(new i = 0; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerNPC(i))
{
new name[MAX_PLAYER_NAME], string[128];
GetPlayerName(i, name, sizeof(name));
BanEx(i, "Bot");
}
}
}