Page 4 of 11

Re: [Request] Pokéclicker

Posted: Wed Jun 29, 2022 4:47 pm
by AkumaGB
ameeelia wrote:
Wed Jun 29, 2022 2:57 pm
AkumaGB wrote:
Tue Jun 28, 2022 8:08 pm
they changed the script to these things? tried everything here...only the "level 100 pokemon" works well, the others don't exist anymore
works just fiiine
yeah, is not to use in script XD but in the console, this is what I has done wrong, but now I understand, worked fine

Re: [Request] Pokéclicker

Posted: Wed Jul 06, 2022 3:43 pm
by clad
i try to change EV for pokemon with the console but it doesn t work...someone know how to do it?

Re: [Request] Pokéclicker

Posted: Thu Jul 07, 2022 5:39 am
by minisora
clad wrote:
Wed Jul 06, 2022 3:43 pm
i try to change EV for pokemon with the console but it doesn t work...someone know how to do it?

Code: Select all

for (i=0; i < App.game.party._caughtPokemon().length; i++) {
	GameHelper.incrementObservable(App.game.statistics.effortPoints[App.game.party._caughtPokemon()[i].id], 100000);
}

Re: [Request] Pokéclicker

Posted: Thu Jul 07, 2022 1:58 pm
by clad
minisora wrote:
Thu Jul 07, 2022 5:39 am
clad wrote:
Wed Jul 06, 2022 3:43 pm
i try to change EV for pokemon with the console but it doesn t work...someone know how to do it?

Code: Select all

for (i=0; i < App.game.party._caughtPokemon().length; i++) {
	GameHelper.incrementObservable(App.game.statistics.effortPoints[App.game.party._caughtPokemon()[i].id], 100000);
}
thanks.
it s works fine but only for pokemon with pokerus...is there a code to activate pokerus for all caught pokemon?(i didnt find where is the pokerus command)

Re: [Request] Pokéclicker

Posted: Fri Jul 08, 2022 3:16 am
by minisora
clad wrote:
Thu Jul 07, 2022 1:58 pm
minisora wrote:
Thu Jul 07, 2022 5:39 am
clad wrote:
Wed Jul 06, 2022 3:43 pm
i try to change EV for pokemon with the console but it doesn t work...someone know how to do it?

Code: Select all

for (i=0; i < App.game.party._caughtPokemon().length; i++) {
	GameHelper.incrementObservable(App.game.statistics.effortPoints[App.game.party._caughtPokemon()[i].id], 100000);
}
thanks.
it s works fine but only for pokemon with pokerus...is there a code to activate pokerus for all caught pokemon?(i didnt find where is the pokerus command)

Code: Select all

for (i=0; i < App.game.party._caughtPokemon().length; i++) {
	App.game.party._caughtPokemon()[i].pokerus = true;
}

Re: [Request] Pokéclicker

Posted: Fri Jul 08, 2022 5:24 am
by clad
minisora wrote:
Fri Jul 08, 2022 3:16 am
clad wrote:
Thu Jul 07, 2022 1:58 pm
minisora wrote:
Thu Jul 07, 2022 5:39 am

Code: Select all

for (i=0; i < App.game.party._caughtPokemon().length; i++) {
	GameHelper.incrementObservable(App.game.statistics.effortPoints[App.game.party._caughtPokemon()[i].id], 100000);
}
thanks.
it s works fine but only for pokemon with pokerus...is there a code to activate pokerus for all caught pokemon?(i didnt find where is the pokerus command)

Code: Select all

for (i=0; i < App.game.party._caughtPokemon().length; i++) {
	App.game.party._caughtPokemon()[i].pokerus = true;
}
wow thank you

Re: [Request] Pokéclicker

Posted: Sun Jul 10, 2022 5:44 pm
by clad
a last question , is there a way to finish all achievement with the command in the console?

Re: [Request] Pokéclicker

Posted: Fri Jul 22, 2022 6:44 am
by Dragonitenoob1
how do u gain shards?

Re: [Request] Pokéclicker

Posted: Sun Jul 24, 2022 8:05 am
by clad
minisora wrote:
Thu Jul 07, 2022 5:39 am
clad wrote:
Wed Jul 06, 2022 3:43 pm
i try to change EV for pokemon with the console but it doesn t work...someone know how to do it?

Code: Select all

for (i=0; i < App.game.party._caughtPokemon().length; i++) {
	GameHelper.incrementObservable(App.game.statistics.effortPoints[App.game.party._caughtPokemon()[i].id], 100000);
}
this code doesn t work now..effortPoints don t exist now

Re: [Request] Pokéclicker

Posted: Sat Aug 13, 2022 1:08 pm
by berbax
hi, I tested several things but I couldn't find how to increase the evolution items like DNA, and I looked for a way to increase the items (treasure) of the underground, I tested the amount or by oaskitem , but I failed miserably, so I turn to you to hope to have a solution, because with the last update I wanted to have plenty of fossil and shard.
thank you in advance

Re: [Request] Pokéclicker

Posted: Sat Aug 13, 2022 7:22 pm
by berbax
I would like to have a way to have all the pokemon ids implemented in the game because with each update there will be new ones and I would like to be able to give them to me, but I don't know how to see them all

Re: [Request] Pokéclicker

Posted: Thu Sep 01, 2022 3:44 pm
by clad
is there a command to get all pokemon (with all version) , with only 1 command in the console?

Re: [Request] Pokéclicker

Posted: Thu Sep 01, 2022 11:30 pm
by Dragonitenoob1
for (let index = 0; index < 897; index++) {
App.game.party.gainPokemonById(index,1)
}

Re: [Request] Pokéclicker

Posted: Fri Sep 02, 2022 11:27 am
by clad
Dragonitenoob1 wrote:
Thu Sep 01, 2022 11:30 pm
for (let index = 0; index < 897; index++) {
App.game.party.gainPokemonById(index,1)
}
thank you it works fine
but only for the initial version of each pokemon, not for different version of the pokemon

Re: [Request] Pokéclicker

Posted: Fri Sep 02, 2022 5:38 pm
by clad
clad wrote:
Fri Sep 02, 2022 11:27 am
Dragonitenoob1 wrote:
Thu Sep 01, 2022 11:30 pm
for (let index = 0; index < 897; index++) {
App.game.party.gainPokemonById(index,1)
}
thank you it works fine
but only for the initial version of each pokemon, not for different version of the pokemon

i find the solution , with this command it works

for (i=0; i < App.game.party._caughtPokemon().length; i++) {
App.game.party.gainPokemonById(i,1)
}