You seem to have changed the function of settings.cs, previously was much easier to understand.
how do we make it choose highest cp pokemon and transfer crappy pokemon?
Thanks and sorry for the repetitive question.
You seem to have changed the function of settings.cs, previously was much easier to understand.
how do we make it choose highest cp pokemon and transfer crappy pokemon?
Thanks and sorry for the repetitive question.
How do i add pokemon to the transfer list? I see that i can edit it but how do i put like the ID with it or w/e
is it normal that i'm gettin retry request right now? im using google
does this bypass the need to enter the google device code every 30 minutes?
I'm working with necro on the transfer types and settings.
Currently, all settings are in PokemonGo\RocketAPI\Console\App.config
All the various types of transfers are now explained in the readme. Hopefully it'll now be clear what they all do.
this is server PROBLEM this error google account Screenshot by Lightshot ???
Probably this:
Code:if (ClientSettings.TransferType == "leaveStrongest") await TransferAllButStrongestUnwantedPokemon(client); else if (ClientSettings.TransferType == "all") await TransferAllGivenPokemons(client, pokemons); else if (ClientSettings.TransferType == "duplicate") await TransferDuplicatePokemon(client); else if (ClientSettings.TransferType == "cp") await TransferAllWeakPokemon(client, ClientSettings.TransferCPThreshold); else System.Console.WriteLine("Wrong trasnferType setting"); if (ClientSettings.EvolveAllGivenPokemons) await EvolveAllGivenPokemons(client, pokemons);
can it not show which account is logged in? i have multiple accounts when i open all of them its named as CMD only cant even differentiate which of my accounts is running still or crashed already
whi i get retry request error?please can tell me how to fix it?please sir thank you
Open Program.cs, There is alots of helpful notes.
foreach (var unwantedPokemonType in unwantedPokemonTypes)
{
var pokemonOfDesiredType = pokemons.Where(p => p.PokemonId == unwantedPokemonType)
.OrderByDescending(p => p.Cp)
.ToList();
var unwantedPokemon =
pokemonOfDesiredType.Skip(1) // keep the strongest one for potential battle-evolving
.ToList();
its error men
Coded by Ferox - edited by NecronomiconCoding Awesome! You have already got the newest version! Please visit https://www.google.com/device and enter PTKY-YPTJ
Added a Pull Request