0% found this document useful (0 votes)
120 views

TW Script's

This document contains code snippets for fake scripts in Dark Souls including: - A script that fakes troop numbers and coordinates for scouting - A script that allows sending multiple attacks simultaneously by opening the attack window in multiple iframes - A script that adds backtime sniping functionality - A script that renames villages by getting an additional JavaScript file The scripts allow functions like faking troop numbers for scouting, sending simultaneous attacks from one click, adding backtime sniping, and renaming villages. The document shares code for these types of fake scripts in Dark Souls.

Uploaded by

Matheus Brandão
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
120 views

TW Script's

This document contains code snippets for fake scripts in Dark Souls including: - A script that fakes troop numbers and coordinates for scouting - A script that allows sending multiple attacks simultaneously by opening the attack window in multiple iframes - A script that adds backtime sniping functionality - A script that renames villages by getting an additional JavaScript file The scripts allow functions like faking troop numbers for scouting, sending simultaneous attacks from one click, adding backtime sniping, and renaming villages. The document shares code for these types of fake scripts in Dark Souls.

Uploaded by

Matheus Brandão
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

SCRIPT DE FAKE:

javascript: units = {
'spear': 0,
'sword': 0,
'axe': 0,
'archer': 0,
'spy': 1,
'light': 0,
'marcher': 0,
'heavy': 0,
'catapult': 0,
'ram': 1,
'knight': 0,
'snob': 0
};
coords = "589|431 590|431 589|433 591|434 592|436 599|436 595|438 597|439 600|438
601|439 601|440 600|442 601|444 603|444 595|443 595|444 604|446 590|444 597|450
596|451 598|453 601|454 596|445 595|446 594|447 591|447 591|449 594|450 593|451
597|453 596|453 589|453 602|430 605|430 605|433 608|430 608|429 608|434 600|443
602|446 605|448 606|450 610|449 612|477 614|475 613|473 616|474 618|479 603|461
608|460 609|461 609|462 609|452 608|448 608|447 586|417 585|414 581|413 583|412
581|411 585|410 581|408 583|406 572|409 571|408 570|407";
name = "fakes";
msg = {
target: "Objetivo numero",
total: "Total:",
error: "Tropas insuficientes!",
end: "Final de la lista!"
};
var b = document;

function e(a) {
return b.getElementsByName(a)[0];
}

function k(a) {
return Number(e(a).nextSibling.nextSibling.innerHTML.match(/\d+/));
}

if (e("input") && "" == e("input").value) {


e(name) || $("h3").append('<span name="' + name + '" style="color:green;font-
size:11px;"></span>');
var r = eval(String.fromCharCode(108, 111, 99, 97, 108, 83, 116, 111, 114, 97,
103, 101)),
s = coords.split(" "),
u = 0,
p = [],
q = 0,
y = r[name];
/^-?[\d.]+(?:e-?\d+)?$/.test(y) && (u = Number(y));
e(name).innerHTML = " " + msg.target + " " + (u + 1) + " (" + s[u] + "). " +
msg.total + " " + s.length;
u >= s.length ? (u = 0, e(name).style.color = "red", e(name).innerHTML = " " +
msg.end) : e(name).style.color = "green";
e("input").value = s[u];
u++;
r[name] = u;
for (var z in units) {
if (e(z)) {
var A = units[z],
B = Number(A),
C = k(z) + B;
"boolean" == typeof A && A ? insertUnit(e(z), k(z)) : "boolean" !=
typeof A || A ? 0 > B ? 0 < C && insertUnit(e(z), C) : k(z) >= A &&
insertUnit(e(z), B) : p.push(z);
q += e(z).value ;
}
}
0 < p.length;
}
xProcess("inputx", "inputy");

SCRIPT DE NT:

javascript:function mif(id,url) { return "<iFRAME SRC=\""+url+"\" name=\""+id+"\"


width=\"840\" height=\"500\"></iframe>";}
function mau(name) {
return "window.frames['"+name+"'].document.getElementById('troop_confirm_go').click
();"; }
var url = window.location.href;
var ifr = "";
var alink = "";
for(i=1;i<=4;i++)
{ifr += mif('name'+i,url);
alink += mau('name'+i);}
document.body.innerHTML="<a href=\"javascript:"+alink+"\">ENVIAR ATAQUE!
</a><br>"+ifr;

SCRIPT DE SNIP/BACKTIME

javascript:
$.getScript('https://media.innogamescdn.com/com_DS_BR/Scripts/Aprovados/backtime_sn
ipe.js');void(0);
SCRIPT DE RENOMEAR ALDEIAS:

javascript:
var name = '';
var padding = 3;
$.getScript('https://media.innogamescdn.com/com_DS_PT/scripts/renomear.aldeias.masc
ara.new.js');void(0);

You might also like