Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Evolution changes? #3408

Closed
raxxon opened this issue Aug 10, 2016 · 5 comments
Closed

Evolution changes? #3408

raxxon opened this issue Aug 10, 2016 · 5 comments

Comments

@raxxon
Copy link

raxxon commented Aug 10, 2016

Expected Behavior

Bot evolves pokemon and then processes further

Actual Behavior

Bot evolves a few pokemon on start and then ignores the rest/recycles new targets on acquisition - Bot never evolves ALL available specified pokemon despite an excess of candies and never evolves any pokemon after initial load

Your config.json (remove your credentials and any other private info)

    "tasks": [
      {
        "type": "HandleSoftBan"
      },
      {
        "type": "CollectLevelUpReward"
      },
      {
        "type": "IncubateEggs",
        "config": {
          "longer_eggs_first": true
        }
      },
      {
        "type": "EvolvePokemon",
        "config": {
          "evolve_all": "Pidgey,Rattata,Weedle,Zubat,Caterpie,Spearow,Krabby,Staryu,Tentacool",
          "evolve_speed": 20,
          "evolve_cp_min": 10,
          "use_lucky_egg": false
        }
      },
      {
        "type": "TransferPokemon"
      },
      {
        "type": "RecycleItems",
        "config": {
          "item_filter": {
            "1":        { "keep" : 25 },
            "2":        { "keep" : 100},
            "3":        { "keep" : 100},
            "101":    { "keep" : 0 },
            "102":    { "keep" : 0 },
            "103":    { "keep" : 0 },
            "104":    { "keep" : 50 },
            "201":    { "keep" : 20 },
            "202":    { "keep" : 30 },
            "701":    { "keep" : 25 }
          }
        }
      },
      {
        "type": "CatchVisiblePokemon"
      },
      {
        "type": "CatchLuredPokemon"
      },
      {
        "type": "SpinFort"
      },
      {
        "type": "FollowPath",
        "config": {
          "path_mode": "loop",
          "path_file": "************************"
        }
      }
    ],

Steps to Reproduce

Run bot with Tasks configured as above

Other Information

OS: Windows 10.1 (Bash Shell, Ubuntu)
Git Commit:
hazer@BREAKPOINT:/PokemonGo-Bot$ git log -n 1 --pretty=format:"%H" ; python -V
67fe00b
Python 2.7.6
hazer@BREAKPOINT:
/PokemonGo-Bot$

@ghost
Copy link

ghost commented Aug 10, 2016

There is a new config option "evolve_captured": "NONE", see #3292

@raxxon
Copy link
Author

raxxon commented Aug 10, 2016

Ah. It appears that hasn't been documented in the Wiki area yet. Thanks for the info. :)

@raxxon
Copy link
Author

raxxon commented Aug 10, 2016

added evolve_captured, configured to match evolve_all, no change... bot is still not evolving pokemon. :|

@ghost
Copy link

ghost commented Aug 10, 2016

{
    "type": "EvolvePokemon",
    "config": {
        "evolve_all": "Caterpie, Weedle, Pidgey, Rattata, Spearow, Psyduck, Poliwag, Slowpoke, Drowzee, Goldeen, Staryu, Magikarp",
        "evolve_captured": "Caterpie, Weedle, Pidgey, Rattata, Spearow, Psyduck, Poliwag, Slowpoke, Drowzee, Goldeen, Staryu, Magikarp",
        "first_evolve_by": "iv",
        "evolve_above_cp": 0,
        "evolve_above_iv": 0,
        "logic": "and",
        "evolve_speed": 20,
        "use_lucky_egg": false
    }
},

This is mine EvolvePokemon task, which is working at the moment

@raxxon
Copy link
Author

raxxon commented Aug 10, 2016

Looks like that's it... I removed the above cp/iv and logic tags as they didn't appear to impact things before... Now the bot is evolving everything and purging the backlog of excess birds.

Thanks. :D

@raxxon raxxon closed this as completed Aug 10, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant