how to compile github? i want the latest features
Stupid question, is there a reason why my bot isn't picking up Magikarps? It's like avoiding them hardcore. :c, EVERYTHING ELSE HOWEVER is working perfectly![]()
Hey there.
Actually I already copied something out of commandslines / consoles. But for some reason I cannot copy the Google Auth Key.
It won't mark it, instead just starting to transfer the pokeman.
Any advices?
Also - thanks for all the work and quick replies. Honestly.
Last edited by NaeDM; 07-22-2016 at 02:12 AM. Reason: idea
How do I fix this? DoNotTransfer not working.
![]()
Okey i made something stupid - now i got account where pokebag is full but i need to "catch first pokemon" [squirtle/charm/bulb] so i cant do this cuz my bag is full...
What can i do to make bot firstly transfer some of the pokemons?
crash on startup
https://1drv.ms/i/s!ArfIGKOddf1yhPQvkTqSf3VZDjXcng
every pokemons run away ?? how to fix it
This. There is code already there in regard of IVs but im not sure if its working already...
/u/Dainzz posted this at this sub-reddit: https://www.reddit.com/r/pokemongode...y_open_source/
Can we get something going with it?private async Task TransferDuplicatePokemon(bool keepPokemonsThatCanEvolve = false)
{
var duplicatePokemons = await _inventory.GetDuplicatePokemonToTransfer(keepPokemonsThatCanEvolve);
foreach (var duplicatePokemon in duplicatePokemons)
{
int iv = duplicatePokemon.IndividualAttack + duplicatePokemon.IndividualDefense + duplicatePokemon.IndividualStamina;
double ivPercentage = iv / 45;
if (ivPercentage < 80)
{
var transfer = await _client.TransferPokemon(duplicatePokemon.Id);
Logger.Write($"Transfer {duplicatePokemon.PokemonId} with {duplicatePokemon.Cp} CP", LogLevel.Info);
await Task.Delay(500);
}
}
}
Just a question : Can this bot find gyms nearby every hour or so and place strongest pokemon if space is empty? or can it fight it way up to increase gym prestige and then place the pokemon?