Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Отправляет все войска
- javascript:
- var cookieName = "123";
- var coords = "478|593";
- var doc = document;
- var url = document.URL;
- if (url.search(/screen=place/) != -1 && url.search(/try=confirm/) === -1 && document.forms[0].x.value === "" && document.forms[0].y.value === "")
- {
- if (window.frames.length > 0) { doc = window.main.document; }
- url = document.URL;
- if (url.indexOf("screen=place") == -1) { alert("This script needs to be run from the rally point"); }
- coords = coords.split(" ");
- var index = 0;
- farmcookie = document.cookie.match("(^|;) ?" + cookieName + "=([^;]*)(;|$)");
- if (farmcookie != null) { index = parseInt(farmcookie[2]); }
- if (index >= coords.length) {index = 0;}
- coords = coords[index];
- coords = coords.split("|");
- index = index + 1;
- cookie_date = new Date(2018, 03, 20);
- document.cookie = cookieName + "=" + index + ";
- expires=" + cookie_date.toGMTString();
- doc.forms[0].x.value = coords[0];
- doc.forms[0].y.value = coords[1];
- selectAllUnits(true);
- document.forms[0].attack.click();
- }
- else
- if (url.search(/screen=place/) != -1 && url.search(/try=confirm/) != -1)
- { document.forms[0].submit.click(); }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement