var xhr = new XMLHttpRequest(); var b = [], c, d; xhr.open('GET', "http://pls1.plemiona.pl/map/village.txt"); xhr.onreadystatechange = function () { if (xhr.status == 200 && xhr.readyState == 4) { var r = xhr.responseText.split("\n"); for (var i = 0; i < r.length; i++) { b.push(r[i].split(",")); }; c = b.filter(function (el) { return el[4] === "0" && el[5] !== "0" && el[5] !== ""; }); d = $.map(c, function (i) { return i.slice(0, 1); }); function q(o) { for (var j, x, i = o.length; i; j = Math.floor(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x); return o; }; for (var i = 0; i < q(d).length; i++) { (function (i) { setTimeout(function () { Accountmanager.farm.sendUnits(this, q(d)[i], $('form').attr('action').match(/\d+/g).slice(-1)[0]) }, i * 200); })(i); } } } xhr.send();