Open Gateway753 opened 8 years ago
In mainform.cs, something like this should work:
private async Task EvolveAllGivenPokemons(Client client, IEnumerable
I wrote a similar evolveroutine for myself. This would generate a List of Pokemon above a certain IV and then try to evolve them all.
replace if (ClientSettings.EvolveAllGivenPokemons) await EvolveAllGivenPokemons(client, pokemons);
with if (ClientSettings.EvolveAllGivenPokemons) await evolvemaxIV(client, 90);
put in mainform.cs
private async Task evolvemaxIV(Client client, int minIV)
{
var pokemonstoevolve = new List
@Solrian what mode do you have the transfer on while using your code? I currently use the duplicateIV transfer option.
my personal code is a little more complex than this example, but i use it on duplicateIV also.
For exemple, evolve pokémon only above 90% IV Can someone make this?