Skip to main content

[Hack] Set Gold

Bookmarklet to set your gold to 9 million:

javascript:!function(t){const e=Boot.prototype.game._state._current.user.source,o=parseInt(9e6);o>1e7||(e.data.gold=o)}();

Source Code:

function setGold (amt) {

/** Player variable */
const player = Boot.prototype.game._state._current.user.source;

/** Amount of gold to get */
const amount = parseInt(amt);

// We cannot set the amount of gold above 10m without throwing 418s.
if (amount > 10000000) return;

// Set the player's gold to the amount
player.data.gold = amount;
}

setGold(9000000);