[Request] Pokéclicker
[Request] Pokéclicker
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
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
-
- Expert Cheater
- Posts: 852
- Joined: Fri Oct 12, 2018 10:25 pm
- Reputation: 896
Re: [Request] Pokéclicker
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.
Re: [Request] Pokéclicker
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 pleaseGreenHouse wrote: ↑Fri Mar 04, 2022 7:49 pmYou 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.
-
- Noobzor
- Posts: 6
- Joined: Mon Jan 28, 2019 5:07 pm
- Reputation: 0
Re: [Request] Pokéclicker
Once you've changed a value in the js script how do you actually commit that change to the site?GreenHouse wrote: ↑Fri Mar 04, 2022 7:49 pmYou 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.
-
- Expert Cheater
- Posts: 852
- Joined: Fri Oct 12, 2018 10:25 pm
- Reputation: 896
Re: [Request] Pokéclicker
You just don't. I said to use the Console, not to change the script.Turkeychopio1 wrote: ↑Tue Mar 22, 2022 12:26 pmOnce you've changed a value in the js script how do you actually commit that change to the site?
Re: [Request] Pokéclicker
And what about the desktop version?
Re: [Request] Pokéclicker
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
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
-
- What is cheating?
- Posts: 1
- Joined: Fri May 20, 2022 2:04 pm
- Reputation: 0
Re: [Request] Pokéclicker
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 ?
Re: [Request] Pokéclicker
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.
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.
Re: [Request] Pokéclicker
Wip wrote: ↑Mon May 23, 2022 8:51 amhey, 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 .
Re: [Request] Pokéclicker
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
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
Re: [Request] Pokéclicker
i'd assume its not because the value stays the same when i add QuestPointsjjc1228 wrote: ↑Mon May 23, 2022 9:06 amWip wrote: ↑Mon May 23, 2022 8:51 amhey, 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 .
Re: [Request] Pokéclicker
Add Experience and levels to your pokemon in your party
Add Any pokemon to your party
Get Random Berry
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
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]
Example: App.game.party.gainPokemonById(10,1) [will give me shiny caterpie]
Spoiler
App.game.farming.gainRandomBerry()
Re: [Request] Pokéclicker
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"jjc1228 wrote: ↑Mon May 23, 2022 9:06 amWip wrote: ↑Mon May 23, 2022 8:51 amhey, 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 .
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.
Re: [Request] Pokéclicker
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...
App.game.wallet.loseAmount(new Amount(###, GameConstants.Currency.money))
change 'money' with questPoint, diamond, battlePoint etc...
Who is online
Users browsing this forum: doodl3simpl3, Majestic-12 [Bot], MimiMe