09.05.2015, 23:23
PHP код:
BlockIPs() {
new File:file = fopen("ips_bloqueados.txt", io_read), line[17];
if ( file ) {
while(fread(file, line)) {
BlockIpAddress(line, 60 * 1000);
printf("***** IP [%s] bloqueado!", line);
}
fclose(file);
}
return 1;
}
public OnGameModeInit() {
BlockIPs();
return 1;
}
DOF2 nгo й a melhor maneira para fazer isto, file functions "quebra o galho" perfeitamente.
Beijos!