Sunteți pe pagina 1din 2

how to unlock jade and arcania

1.open chrome and facebook then everwing


2.go to characters and select but do not equip yet
3.right click and inspect element
4.go to source then index then instant bundle then browser mobile.js
5.click and wait then click pretty face icon and wait
6.click ctrl f and type in query.prototype.run
7.highlight the no. on the left in parallel with var t= this
8.after that click equip, now everwing should freeze
9. on the right side click e object
10. then go to console and copy this code

var _r1 = new RegExp("jade_i");


var _r2 = new RegExp("arcana_i");
for(var i in e){ if (_r1.test(e[i].schemaPrimativeID)) { e[i].state="idle" } if
(_r2.test(e[i].schemaPrimativeID)) { e[i].state="idle"; }
}?

11.paste and hit enter


12. go back to source and click play button
13. repeat 4x
14. after that un click the number which you highlighted and the hit play again.

how to maxed all characters

1.do everything as what above shows except for the code script, instead use this

var l = Object.keys(e);
for (var c = 0; c < l.length; c++) {
var h = e[l[c]];
if(h.schemaPrimativeID.includes("_stat1")){
h.maximum = 80;
h.value = 80;
}
}

how to maxed all the dragons

1. again repeat the procedure above except the script

var _r1 = new RegExp("_maturity");


var _r2 = new RegExp("_zodiac_bonus");
var _r3 = new RegExp("_xp");
var _r5 = new RegExp("Item");
var _r4 = new RegExp("NC04"); //sidekick you want to change
for(var i in e){
if(_r4.test(e[i].schemaPrimativeID)){
if (_r5.test(e[i].schemaPrimativeType)) {
e[i].schemaPrimativeID="sidekick:WC08"; //to sidekick you want
}
if (_r1.test(e[i].schemaPrimativeID)) {
e[i].maximum=3;
e[i].value=3;
}
if (_r2.test(e[i].schemaPrimativeID)) {
e[i].maximum=2;
e[i].value=2;
}
if (_r3.test(e[i].schemaPrimativeID)) {
e[i].maximum=200000;
e[i].value=200000;
}
}
}

S-ar putea să vă placă și