New Userscript

try to take over the world!

  1. // ==UserScript==
  2. // @name New Userscript
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match http://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...//Draconyx Gear (Use one at a time)
  15. PIXI.game.prodigy.player.backpack.data.outfit.push({"N":999999,"ID":52});
  16. PIXI.game.prodigy.player.backpack.data.hat.push({"N":999999,"ID":61});
  17. PIXI.game.prodigy.player.backpack.data.weapon.push({"N":1,"ID":77});
  18.  
  19. //Max Member stars
  20. javascript:PIXI.game.prodigy.player.data.storedMemberStars=99999999999999
  21.  
  22. //99 Conjure cubes (you can change the number)
  23. PIXI.game.prodigy.debugMisc.getCubes(99)
  24. //Sets the amount of all your currencies to 9 million. (you can change number)
  25. x = PIXI.game.prodigy.player.backpack.data.currency
  26. for (i in x) {
  27. x[i] = {"ID": x[i].ID, "N": 9000000}
  28. }
  29.  
  30. //All outfits
  31. PIXI.game.prodigy.player.backpack.data.outfit=[]
  32. x = PIXI.game.state.states.Boot._gameData.outfit
  33. for (i in x) {
  34. PIXI.game.prodigy.player.backpack.data.outfit[i] = {"ID": x[i].ID, "N": 1}
  35. }
  36.  
  37. //All boots
  38. PIXI.game.prodigy.player.backpack.data.boots=[]
  39. x = PIXI.game.state.states.Boot._gameData.boots
  40. for (i in x) {
  41. PIXI.game.prodigy.player.backpack.data.boots[i] = {"ID": x[i].ID, "N": 1}
  42. }
  43.  
  44. //All hats
  45. PIXI.game.prodigy.player.backpack.data.hat=[]
  46. x = PIXI.game.state.states.Boot._gameData.hat
  47. for (i in x) {
  48. PIXI.game.prodigy.player.backpack.data.hat[i] = {"ID": x[i].ID, "N": 1}
  49. }
  50.  
  51. //Trails Master set
  52. function TrialmastersGear() {
  53. PIXI.game.prodigy.player.backpack.data.hat.push({"N":999999,"ID":23});
  54. PIXI.game.prodigy.player.backpack.data.outfit.push({"N":999999,"ID":24});
  55. PIXI.game.prodigy.player.backpack.data.boots.push({"N":999999,"ID":18});
  56. PIXI.game.prodigy.player.backpack.data.weapon.push({"N":1,"ID":47});
  57. }
  58.  
  59. TrialmastersGear();
  60.  
  61. //W124RD_Nickname
  62. function W124RD_Nickname() {
  63. PIXI.game.prodigy.player.appearance._name.nickname=7;
  64. }
  65.  
  66. W124RD_Nickname();
  67.  
  68. //Free membership
  69. function membership() {
  70. PIXI.game.prodigy.player.tt=true;
  71. }
  72.  
  73. membership();
  74.  
  75. //Level 100
  76. function level100() {
  77. PIXI.game.prodigy.player.data.level=100;
  78. }
  79.  
  80. level100();
  81.  
  82. // Instantly kills the Titan.
  83. PIXI.game.prodigy.titansNetworkHandler.hitTitan(Infinity)
  84.  
  85. //Lets you skip the tutorial (Make sure to give yourself a name first)
  86. PIXI.game.prodigy.debugQuests.completeTutorial()
  87.  
  88. // Allows your player to level with the addStars function
  89. PIXI.game.prodigy.player.addStars()
  90.  
  91. // Use this right after you get into the Dark Tower! (Be the god of the dark tower)
  92. PIXI.game.prodigy.debugMisc.tpTowerFloor(100)
  93. PIXI.game.prodigy.player.modifiers.damage=10000000; // 10000000x Damage
  94. PIXI.game.prodigy.player.modifiers.maxHearts=100000000; // 100000000x HP
  95. PIXI.game.prodigy.player.heal(9999999999999999999999999999999999999999999999)
  96. })();