PokemonGoF / PokemonGo-Bot

The Pokemon Go Bot, baking with community.
MIT License
3.87k stars 1.54k forks source link

EvolvePokemon not running? #3213

Closed RedViper9 closed 8 years ago

RedViper9 commented 8 years ago

Expected Behavior

Pokemon are evolved if sufficient candy is available for evolution every time Tasks runs.

Actual Behavior

Some pokemon evolved, others ignored. I've got 400+ Pidgey candy and the bot releases the pidgeys rather than evolve them.

Steps to Reproduce

                { "type": "EvolvePokemon",
                          "config": { "evolve_all": "Kabuto,Omanyte,Eevee,Magikarp,Staryu,Goldeen,Horsea,Rhyhorn,Koffing,Cubone,Exeggcute,Voltorb,Krabby,Drowzee,Haunter,Gastly,Shellder,Grimer,Seel,Doduo,Magnemite,Slowpoke,Ponyta,Graveler,Geodude,Tentacool,Weepinbell,Bellsprout,Machoke,Machop,Kadabra,Abra,Poliwhirl,Poliwag,Growlithe,Mankey,Psyduck,Meowth,Diglett,Venonat,Paras,Gloom,Oddish,Zubat,Jigglypuff,Vulpix,Clefairy,Nidorino,Nidoran Male,Nidorina,Nidoran Female,Sandshrew,Pikachu,Ekans,Spearow,Rattata,Pidgeotto,Pidgey,Kakuna,Weedle,Metapod,Caterpie,Wartortle,Squirtle,Charmeleon,Charmander,Ivysaur,Bulbasaur",
                                      "first_evolve_by": "iv",
                                      "evolve_cp_min": 10,
                                      "evolve_iv_min": 0.1,
                                      "evolve_speed": 30,
                                      "use_lucky_egg": false
                                    }
                },
                { "type": "TransferPokemon"
                },
                {"type": "MoveToFort",
                  "config": {
                                    "lure_attraction": true,
                                    "lure_max_distance": 2000
                                  }
                }
              ],
Baconnaise commented 8 years ago

Move your transferpokemon task to be after the evolvepokemon task. Here's an example of mine.

trythis

RedViper9 commented 8 years ago

@Baconnaise Thanks, but I already had that order. Figured out the problem. I missed the update and was using an old evolve_cp_min instead of evolve_above_cp

Closed.