public Kick(id, const powod[])cały ten public na :
public Kick(id, const powod[]) { if(!g_kogo[id]) { client_print(id, print_chat, "%s Nie ma wszystkich danych", tag); return; } new pl = g_kogo[id]; new name[2][33]; get_user_name(id, name[0], 32); get_user_name(pl, name[1], 32); switch(get_cvar_num("amx_show_activity")) { case 2 : { set_hudmessage(0, 255, 0, 0.05, 0.35, 0, 6.0, 5.0, 0.5, 0.15, 7); show_hudmessage(0, "Gracz o nicku %s ^nZostal wywalony przez %s ^nPowod: %s", name[1], name[0], powod); client_print(pl, print_console, "%s ==========================================", tag); client_print(pl, print_console, "%s Zostales wykopany przez %s", tag, name[0]); client_print(pl, print_console, "%s Powod: ^"%s^"", tag, powod); client_print(pl, print_console, "%s Jezeli uwazasz, ze kick byl bezpodstawny zglos to na %s", tag, strona); client_print(pl, print_console, "%s Pozdro od autora (byCZEK)", tag); client_print(pl, print_console, "%s ==========================================", tag); } case 1: { set_hudmessage(0, 255, 0, 0.05, 0.35, 0, 6.0, 5.0, 0.5, 0.15, 7); show_hudmessage(0, "Gracz o nicku %s ^nZostal wywalony ^nPowod: %s", name[1], powod); client_print(pl, print_console, "%s ==========================================", tag); client_print(pl, print_console, "%s Powod: ^"%s^"", tag, powod); client_print(pl, print_console, "%s Jezeli uwazasz, ze kick byl bezpodstawny zglos to na %s", tag, strona); client_print(pl, print_console, "%s Pozdro od autora (byCZEK)", tag); client_print(pl, print_console, "%s ==========================================", tag); } } server_cmd("kick #%d ^"%s^"", get_user_userid(pl), powod); }Pierwsza wersja nie sprawdza jak mamy ustawiony cvar : amx_show_activity
teraz jak mamy na 1 to nie widać nicku adma , jak 2 to widać

Powinno działać.