Pokeclicker Cheat

Pokeclicker Cheat

Cheat script for Pokeclicker.

Get Started

Getting Started

To import the script, paste this snipped into your console.
(after the game has loaded):

eval(await (await fetch('https://pokeclickercheat.netlify.app/script.js')).text()); 📋

Customize settings:








Configurations

There are a few settings you can change based on your preferences.

Slightly cheaty

Automatically activate dungeon chests and boss fight.
Cheats.autoDungeon = true;
Automatically harvest and plant berries.
Cheats.autoFarming = true;

Quite cheaty

Automatically click (can be disabled in UI)
Cheats.autoClick = true;
Disable autoclick to open the Startmenu (you can use the UI for this)

Makes catching speed faster
Cheats.fastCatch = true;

Makes mining regen time faster (0.1 seconds)
Cheats.fastMine = true;

Extreme cheaty

Automatically use bombs with extreme generation on mine energy
Cheats.cheatMine = true;
This is very extreme, I recommend turning off mine notifications (at least)

Reveal all tiles in dungeon
Cheats.revealDungeonTiles = true;
Start with the boss
Cheats.cheatDungeon = false;

Manual cheats (for now)

Some cheats you might have to run manually
if a function has [] like [shiny = true]
that means it is an optional argument, and you don't need to add it, if you don't want to.

For now some cheats are manual only:
To change the requirements and reward for your current quest:
App.game.quests.currentQuests()[0].amount = 12;
App.game.quests.currentQuests()[0].pointsReward = 50000;


To change any kind of currency you have:
App.game.wallet.gainDungeonTokens(amount [, ignorebonus = false]);
App.game.wallet.gainDiamonds(amount);
App.game.wallet.gainBattlePoints(amount);
App.game.wallet.gainFarmPoints(amount);
App.game.wallet.gainQuestPoints(amount);
App.game.wallet.gainMoney(amount);

Spawning Pokemon

Edit the boss pokemon to whatever you like(might need to call STOPFighting() after)
Cheats.cheatBossPokemon = false;
Cheats.bossPokemon = 'mew';

To spawn a Pokemon inside a dungeon, run GenerateDungeonBoss("name" [,shiny = false])
To spawn a Pokemon outside a dungeon (you have to be on a route!), run GenerateEnemy("name" [, shiny = false])