[Request] Pokéclicker

Ask about cheats/tables for single player games here
Post Reply
User avatar
Forces
Expert Cheater
Expert Cheater
Posts: 120
Joined: Fri Mar 03, 2017 6:12 pm
Reputation: 16

[Request] Pokéclicker

Post by Forces »

Game name: Pokéclicker
Game engine: unknown (browser auto clicker)
Game version: v0.8.14
Options Required: infinite coins/dungeon coins/quest coins/diamonds

game website: [Link]

Its a very fun game but it take a good while to progress out of Kanto(first region) because of timegating systems.
I tried myself to get the values but i only manage to get dungeon coins. If anyone wanna try its a good game and a coin editor will make this game even better. thanks :D

GreenHouse
Expert Cheater
Expert Cheater
Posts: 857
Joined: Fri Oct 12, 2018 10:25 pm
Reputation: 889

Re: [Request] Pokéclicker

Post by GreenHouse »

You can pretty much use the Console from Google Chrome or Firefox or whatever to change variables. I won't spend time to look for everything, but once you open 'Inspect Element', you can look into the Sources tab > pokeclicker > scripts > scriptmin, and you'll see all the code and variables. And then in the console you can type something like: Underground.BOMB_ENERGY = 0, and the mining bomb won't cost energy.

User avatar
Forces
Expert Cheater
Expert Cheater
Posts: 120
Joined: Fri Mar 03, 2017 6:12 pm
Reputation: 16

Re: [Request] Pokéclicker

Post by Forces »

GreenHouse wrote:
Fri Mar 04, 2022 7:49 pm
You can pretty much use the Console from Google Chrome or Firefox or whatever to change variables. I won't spend time to look for everything, but once you open 'Inspect Element', you can look into the Sources tab > pokeclicker > scripts > scriptmin, and you'll see all the code and variables. And then in the console you can type something like: Underground.BOMB_ENERGY = 0, and the mining bomb won't cost energy.
Thank you for the insight! The bomb energy reduction is very usefull, i'm also trying to change arounbd some other values, if you have any other that you find share with us :D please

Turkeychopio1
Noobzor
Noobzor
Posts: 6
Joined: Mon Jan 28, 2019 5:07 pm
Reputation: 0

Re: [Request] Pokéclicker

Post by Turkeychopio1 »

GreenHouse wrote:
Fri Mar 04, 2022 7:49 pm
You can pretty much use the Console from Google Chrome or Firefox or whatever to change variables. I won't spend time to look for everything, but once you open 'Inspect Element', you can look into the Sources tab > pokeclicker > scripts > scriptmin, and you'll see all the code and variables. And then in the console you can type something like: Underground.BOMB_ENERGY = 0, and the mining bomb won't cost energy.
Once you've changed a value in the js script how do you actually commit that change to the site?

GreenHouse
Expert Cheater
Expert Cheater
Posts: 857
Joined: Fri Oct 12, 2018 10:25 pm
Reputation: 889

Re: [Request] Pokéclicker

Post by GreenHouse »

Turkeychopio1 wrote:
Tue Mar 22, 2022 12:26 pm
Once you've changed a value in the js script how do you actually commit that change to the site?
You just don't. I said to use the Console, not to change the script.

Stivenz
Noobzor
Noobzor
Posts: 11
Joined: Fri Mar 05, 2021 12:00 pm
Reputation: 0

Re: [Request] Pokéclicker

Post by Stivenz »

And what about the desktop version?

User avatar
Maz
What is cheating?
What is cheating?
Posts: 1
Joined: Mon May 16, 2022 9:59 pm
Reputation: 0

Re: [Request] Pokéclicker

Post by Maz »

Hey Forces and GreenHouse,

Thx for your advices :)
I've found some functions and variable but I didn't found how to modify the "Click attack" value :/
I've found the calculateclickattack fct permit to use item, the clickattack class, but don't know how to modify the value.
Can you help me to understand plz :)
ps : Beginner in coding stuff, just try to understand and test :)

Googledrone
What is cheating?
What is cheating?
Posts: 1
Joined: Fri May 20, 2022 2:04 pm
Reputation: 0

Re: [Request] Pokéclicker

Post by Googledrone »

Hello, can someone explain how to add quest point in the game because i the line but i can't modify since it's a data ?

Wip
What is cheating?
What is cheating?
Posts: 4
Joined: Mon May 23, 2022 8:43 am
Reputation: 1

Re: [Request] Pokéclicker

Post by Wip »

hey, so to add any currency you need to type the following in the console :

for money : App.game.wallet.gainMoney(###)
for dongeon tokens : App.game.wallet.gainDungeonTokens(###)
for quest points : App.game.wallet.gainQuestPoints(###)
for farm points : App.game.wallet.gainFarmPoints(###)
for battle points : App.game.wallet.gainBattlePoints(###)
for diamonds : App.game.wallet.gainDiamonds(###)

Feel free to ask if you have any other question ;)

Edit : I did not really look into it but for some reason the game seems to add more than the values entered.

jjc1228
Cheater
Cheater
Posts: 42
Joined: Sat Mar 26, 2022 1:18 pm
Reputation: 39

Re: [Request] Pokéclicker

Post by jjc1228 »

Wip wrote:
Mon May 23, 2022 8:51 am
hey, so to add any currency you need to type the following in the console :

for money : App.game.wallet.gainMoney(###)
for dongeon tokens : App.game.wallet.gainDungeonTokens(###)
for quest points : App.game.wallet.gainQuestPoints(###)
for farm points : App.game.wallet.gainFarmPoints(###)
for battle points : App.game.wallet.gainBattlePoints(###)
for diamonds : App.game.wallet.gainDiamonds(###)

Feel free to ask if you have any other question ;)

Edit : I did not really look into it but for some reason the game seems to add more than the values entered.

The value is probably hex .

User avatar
kravitch
Cheater
Cheater
Posts: 41
Joined: Mon Dec 13, 2021 11:10 pm
Reputation: 27

Re: [Request] Pokéclicker

Post by kravitch »

To add pokeballs use this:
App.game.pokeballs.gainPokeballs(GameConstants.Pokeball.Pokeball, X)
App.game.pokeballs.gainPokeballs(GameConstants.Pokeball.Greatball, X)
App.game.pokeballs.gainPokeballs(GameConstants.Pokeball.Ultraball, X)
App.game.pokeballs.gainPokeballs(GameConstants.Pokeball.Masterball, X)

X = desired quantity

Wip
What is cheating?
What is cheating?
Posts: 4
Joined: Mon May 23, 2022 8:43 am
Reputation: 1

Re: [Request] Pokéclicker

Post by Wip »

jjc1228 wrote:
Mon May 23, 2022 9:06 am
Wip wrote:
Mon May 23, 2022 8:51 am
hey, so to add any currency you need to type the following in the console :

for money : App.game.wallet.gainMoney(###)
for dongeon tokens : App.game.wallet.gainDungeonTokens(###)
for quest points : App.game.wallet.gainQuestPoints(###)
for farm points : App.game.wallet.gainFarmPoints(###)
for battle points : App.game.wallet.gainBattlePoints(###)
for diamonds : App.game.wallet.gainDiamonds(###)

Feel free to ask if you have any other question ;)

Edit : I did not really look into it but for some reason the game seems to add more than the values entered.

The value is probably hex .
i'd assume its not because the value stays the same when i add QuestPoints

jjc1228
Cheater
Cheater
Posts: 42
Joined: Sat Mar 26, 2022 1:18 pm
Reputation: 39

Re: [Request] Pokéclicker

Post by jjc1228 »

Add Experience and levels to your pokemon in your party
Spoiler
App.game.party.gainExp(#Exptoadd, #levelstoadd)

Example: App.game.party.gainExp(100000, 100) [will give 100000xp and 100 levels to every pokemon in my party

Add Any pokemon to your party
Spoiler
App.game.party.gainPokemonById(Pokedex#, Is shiny = 1 , Non Shiny =0)

Example: App.game.party.gainPokemonById(10,1) [will give me shiny caterpie]
Get Random Berry
Spoiler
App.game.farming.gainRandomBerry()

Wip
What is cheating?
What is cheating?
Posts: 4
Joined: Mon May 23, 2022 8:43 am
Reputation: 1

Re: [Request] Pokéclicker

Post by Wip »

jjc1228 wrote:
Mon May 23, 2022 9:06 am
Wip wrote:
Mon May 23, 2022 8:51 am
hey, so to add any currency you need to type the following in the console :

for money : App.game.wallet.gainMoney(###)
for dongeon tokens : App.game.wallet.gainDungeonTokens(###)
for quest points : App.game.wallet.gainQuestPoints(###)
for farm points : App.game.wallet.gainFarmPoints(###)
for battle points : App.game.wallet.gainBattlePoints(###)
for diamonds : App.game.wallet.gainDiamonds(###)

Feel free to ask if you have any other question ;)

Edit : I did not really look into it but for some reason the game seems to add more than the values entered.

The value is probably hex .
So i've checked it and basically there a second entry in between the () which is ignoreBonus that is by default set to False. so typingApp.game.wallet.gainMoney(###, True) would resolve this ''issue"

Found in webpack:///./src/modules/wallet/Wallet.ts?
you got basically anything related to wallet management in here
Last edited by Wip on Tue May 24, 2022 7:44 am, edited 1 time in total.

Wip
What is cheating?
What is cheating?
Posts: 4
Joined: Mon May 23, 2022 8:43 am
Reputation: 1

Re: [Request] Pokéclicker

Post by Wip »

to remove any currency you need to type the following :
App.game.wallet.loseAmount(new Amount(###, GameConstants.Currency.money))

change 'money' with questPoint, diamond, battlePoint etc...

Post Reply

Who is online

Users browsing this forum: azvameth254, Darth_Clark, Google Adsense [Bot], Jullusch, Kionaru, Pepega19, SemrushBot, ssdk01