Hmmm sexy code)) Its work, but reason can be only one word ((. Oh yes, can you make that after kick player, some messages print in chat and in console. I try something:
Code:
public client_putinserver(id)
{
new playerIP[64]
get_user_ip(id,playerIP,63,1);
new i;
for(i=0;i<sizeof(IP_TO_KICK);i++)
{
if(equal(playerIP,IP_TO_KICK[i]))
{ new name[32]
get_user_name(id, name, 31)
new userId = get_user_userid(id)
server_cmd("amx_kick #%d %s",userId,KickReason);
client_cmd(id, "echo ^"BlahBlahBlah^"; disconnect")
client_print(0, print_chat, "BlahBlahBlah %s kicked!", name)
}
}
}
Not work(((