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

Pokemon transfer #3940

Closed
Pietr opened this issue Aug 14, 2016 · 7 comments
Closed

Pokemon transfer #3940

Pietr opened this issue Aug 14, 2016 · 7 comments

Comments

@Pietr
Copy link

Pietr commented Aug 14, 2016

Hi!
I have a question. How to set to automatically transfer Pokemon? So that left a 2 best Pokemon of each species and some species do not transfer.

The next question is... Is it possible to set automatic evolution?

Thank you for your help.
Regards.

@avexus
Copy link

avexus commented Aug 14, 2016

I also want to know if I want to transfer pokemons on start up, how to set up this:
{ "type": "TransferPokemon" },

@DiegoRBaquero
Copy link

See https://github.com/PokemonGoF/PokemonGo-Bot/blob/master/docs/configuration_files.md and https://github.com/PokemonGoF/PokemonGo-Bot/blob/master/configs/config.json.example

Focus on the EvolvePokemon task and release config

@Pietr
Copy link
Author

Pietr commented Aug 14, 2016

Thanks!
Whoever knows how to separate one species to transfer? Because there is no sense to write out all of them excluding one.

@DiegoRBaquero
Copy link

@Pietr it has many examples on how to do it:

"release": {
      "any": {"release_below_cp": 0, "release_below_iv": 0, "logic": "or"},
      "// Example of always releasing Rattata:": {},
      "// Rattata": {"always_release": true},
      "// Example of keeping 3 stronger (based on CP) Pidgey:": {},
      "// Pidgey": {"keep_best_cp": 3},
      "// Example of keeping 2 stronger (based on IV) Zubat:": {},
      "// Zubat": {"keep_best_iv": 2},
      "// Also, it is working with any": {},
      "// any": {"keep_best_iv": 3},
      "// Example of keeping the 2 strongest (based on CP) and 3 best (based on IV) Zubat:": {},
      "// Zubat": {"keep_best_cp": 2, "keep_best_iv": 3}
    },

@guibr321
Copy link

Transfering pokemon is not working for me :(

@Pietr
Copy link
Author

Pietr commented Aug 14, 2016

Yes.
But ... I want to transfer all the Pokemon with the except Eevee.

@DiegoRBaquero
Copy link

@Pietr so... you do this:

This will transfer ALL pokemons except Eevees

"release": {
      "any": {"release_below_cp": 4000, "release_below_iv": 1, "logic": "or"},
      "Eevee": {"release_below_cp": 0, "release_below_iv": 0, "logic": "or"},
      "// Example of always releasing Rattata:": {},
      "// Rattata": {"always_release": true},
      "// Example of keeping 3 stronger (based on CP) Pidgey:": {},
      "// Pidgey": {"keep_best_cp": 3},
      "// Example of keeping 2 stronger (based on IV) Zubat:": {},
      "// Zubat": {"keep_best_iv": 2},
      "// Also, it is working with any": {},
      "// any": {"keep_best_iv": 3},
      "// Example of keeping the 2 strongest (based on CP) and 3 best (based on IV) Zubat:": {},
      "// Zubat": {"keep_best_cp": 2, "keep_best_iv": 3}
    },

@Pietr Pietr closed this as completed Aug 14, 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

4 participants