25.12.2011, 09:03
Quote:
Код:
#include <a_samp> public OnRconLoginAttempt(ip[], password[], success) { if(!success) { new pip[16]; for(new i=0; i<MAX_PLAYERS; i++) { GetPlayerIp(i, pip, sizeof(pip)); if(!strcmp(ip, pip, true)) { Kick(i); } } } return 1; } |