Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
805
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2. **********************************************************
  3. *********** https://www.youtube.com/c/RandomCrap *********
  4. **********************************************************
  5. */
  6.  
  7.  
  8.  
  9. /*
  10. *
  11. * Money, xp, trophies
  12. * Change number inside value after coins, trophies and xp. Do not include any spaces!
  13. * Max coins = 999999, max trophies = 99999, max lvl xp = 1400000
  14. */
  15. var l = Object.keys(e);
  16. var values = {coins: 999999, trophies: 99999, xp: 1400000};
  17. for (var c = 0; c < l.length; c++) {
  18.     var h = e[l[c]];
  19.     if(h.schemaPrimativeID.includes("currency:trophy")){
  20.       h.balance = values['trophies'];
  21.     }
  22.     else if(h.schemaPrimativeID.includes("stat:xp")){
  23.       h.value = values['xp'];
  24.     }
  25.     else if(h.schemaPrimativeID.includes("currency:coin")){
  26.       h.balance = values['coins'];
  27.     }
  28. }
  29.  
  30.  
  31. /*
  32. *
  33. * Max all sidekicks level and maturity
  34. * You don't need to change anything in this hack
  35. *
  36. */
  37. var l = Object.keys(e);
  38. for (var c = 0; c < l.length; c++) {
  39.     var h = e[l[c]];
  40.     if(h.schemaPrimativeID.includes("_maturity")){
  41.         h.value = 3;
  42.     }
  43.     if(h.schemaPrimativeID.includes("_xp")){
  44.         h.maximum = 240000;
  45.         h.value = 240000;
  46.     }
  47. }
  48.  
  49.  
  50. /*
  51. *
  52. * Increase all characters damage and level
  53. * You don't need to change anything in this hack
  54. *
  55. */
  56. var l = Object.keys(e);
  57.   for (var c = 0; c < l.length; c++) {
  58.     var h = e[l[c]];
  59.     if(h.schemaPrimativeID.includes("_stat1")){    
  60.       h.maximum = 80;
  61.       h.value = 80;
  62.     }
  63. }
  64.  
  65.  
  66. /*
  67. *
  68. * Swap your sidekicks to any sidekick you wish
  69. * Edit r and t values with your sidekick id's
  70. *
  71. */
  72. var l = Object.keys(e);
  73. var r = "LC05"; //Sidekick code you wish to have
  74. var t = "FC13"; //Sidekicks code you wish to replace
  75. for (var c = 0; c < l.length; c++) {
  76.     var h = e[l[c]];
  77.     if(h.schemaPrimativeID === "sidekick:"+t+"_zodiac_bonus"){
  78.       h.schemaPrimativeID = "sidekick:"+r+"_zodiac_bonus";
  79.     }
  80.     else if(h.schemaPrimativeID === "sidekick:"+t+"_zodiac"){
  81.       h.schemaPrimativeID = "sidekick:"+r+"_zodiac";
  82.     }
  83.     else if(h.schemaPrimativeID === "sidekick:"+t+"_maturity"){
  84.       h.schemaPrimativeID = "sidekick:"+r+"_maturity";
  85.     }
  86.     else if(h.schemaPrimativeID === "sidekick:"+t+"_xp"){
  87.       h.schemaPrimativeID = "sidekick:"+r+"_xp";
  88.     }
  89.     else if(h.schemaPrimativeID === "sidekick:"+t){
  90.       h.schemaPrimativeID = "sidekick:"+r;
  91.     }  
  92. }
  93.  
  94.  
  95. /*
  96. *
  97. * Unlock all your champions
  98. * You don't need to change anything in this hack
  99. *
  100. */
  101. var l = Object.keys(e);
  102. for (var c = 0; c < l.length; c++) {
  103.     var h = e[l[c]];
  104.     if(h.schemaPrimativeID.includes("item_character") && h.state.includes("locked")){
  105.        h.state = "idle";
  106.     }
  107. }
  108.  
  109.  
  110.  
  111. /*
  112. **********************************************************
  113. *********** https://www.youtube.com/c/RandomCrap *********
  114. **********************************************************
  115. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement