Skip to main content

Hacking without extensions

Why hack without extensions?

Perhaps your school or organization has blocked one of the following:

  • The PHEx Extension
  • Extensions in general
  • infinitezero.net
  • prodigypnp.com
  • GitHub

Or maybe you just don't want anyone seeing an obvious extension that's about hacking Prodigy. Fair enough.

How to hack without extensions?

It's actually pretty simple.

tip

Don't know how to open the DevTools Console? See the tutorial for your browser:
Google Chrome • Brave Browser • Microsoft Edge • Mozilla Firefox • Opera

  1. Log into Prodigy
  2. Open the DevTools JavaScript Console
  3. You can use Boot.prototype.game._state._current.user.source just like _.player in cheatGUI.
    • If you don't know what _.player is, it's pretty much how we edit the player's data. For example, _.player.data.gold is the amount of gold a player has, _.player.data.tower is the tower floor a player is on, etc. etc.
  4. Congrats! You can now hack Prodigy without using any extensions.
danger

Warning

Not all hacks can be done without the extension. Basic stuff like editing the player's gold, level, etc. can be done, however, more complex things such as Save Charecter, Dyno Dig Walkspeed, Teleport to Map, Get All Runes, etc. are not possible without the extension.

tip

Example: Set gold to 10,000

JavaScript:

Boot.prototype.game._state._current.user.source.data.gold=10000;

Bookmarklet:

javascript:Boot.prototype.game._state._current.user.source.data.gold=10000;