I hate bumping my own thread but i realized that i forgot to attach the code i was working with.
Code:
javascript: var villages = "556|668 548|845";
var villagearr = villages.split(" ");
var targets = 2;
function getCookie() {
var i,
x,
y,
ARRcookies = document.cookie.split(";");
for (i = 0; i < ARRcookies.length; i++) {
x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
x = x.replace(/^\s+|\s+$/g, "");
if (x == "villagenum") {
return unescape(y);
};
}
};
function setCookie(x) {
if(x == targets){
x = 0;
window.alert("Cycle complete, returning cookie to 0.");
};
document.cookie = "villagenum=" + x.toString();
};
/*this is for the form screen*/
if (document.URL.split('screen=place').length == 2 && document.URL.split('try=confirm').length != 2) {
var curVil = getCookie();
coordData = villagearr[curVil];
getCoords = coordData.split("|");
document.forms[0].elements[5].value = 5;
document.forms[0].elements[4].value = 1;
document.forms[0].elements[11].value = getCoords[0];
document.forms[0].elements[12].value = getCoords[1];
setCookie(parseInt(curVil) + 1);
document.getElementById('target_attack').click();
};
/*this is for the confirm screen*/
if (document.URL.split('try=confi').length == 2) {
document.getElementById('troop_confirm_go').click();
};
Bookmarks