-
Member
Originally Posted by
Nairdaaa
Does the bot stop after 30 mins with Ptc login?
no it doesnt stop after 30 mins
-
Member
if anyone can make this dream come true, OMG..
1. Use Pokeball -> Use Great Ball or Use all ball not only pokeball
2. auto drop item like potion, revive or poke ball
-
Banned
Working fine for me, but I'm at a GPS coordinates not even 10 mins away from home, has like 10 pokestops in a small area.
-
Member
there is something like that in the githubs now but they arent precompiled
-
Member
I keep getting unexpected stop? Restarting in 20 seconds.
Despite the location coordinates being on my home. Can someone help please?
-
Member
how do you go about compiling an exe from the githubs?
-
Active Member
Originally Posted by
Ezca
Working fine for me, but I'm at a GPS coordinates not even 10 mins away from home, has like 10 pokestops in a small area.
Also roughly 5-10 minutes away from my home with about 50 pokestops in the area and a bunch of pokemon
Originally Posted by
cosmoexe
I keep getting unexpected stop? Restarting in 20 seconds.
Despite the location coordinates being on my home. Can someone help please?
I am also having this issue
-
Member
Originally Posted by
cosmoexe
I keep getting unexpected stop? Restarting in 20 seconds.
Despite the location coordinates being on my home. Can someone help please?
Post the 2 lines with the coordinates
-
Member
Thanks lots
-
Active Member
Originally Posted by
flashknox
Post the 2 lines with the coordinates
<DefaultLatitude>41.500832</DefaultLatitude> <!-- Default Amsterdam Central Station -->
<DefaultLongitude>-81.696146</DefaultLongitude> <!-- Default Amsterdam Central Station -->
-
Member
Originally Posted by
dreambar.wi
I'm assuming you are trying to change this block of code?
Code:
var dupes = allpokemons.OrderBy(x => x.Cp).Select((x, i) => new { index = i, value = x })
.GroupBy(x => x.value.PokemonId)
.Where(x => x.Skip(1).Any());
I'm assuming this is what you want. Keep the 2 highest cp and dump the rest.
Code:
var dupes = allpokemons.SelectMany(p => p.OrderByDescending(x => x.Cp).Skip(2));
no.. lol
i want to keep 2 of each, and 1k+cp too if possible
i already tried many codes but didnt found a solution yet, i am new to this programing thing
just gonna keep trying!
-
Member
Originally Posted by
nertman
<DefaultLatitude>41.500832</DefaultLatitude> <!-- Default Amsterdam Central Station -->
<DefaultLongitude>-81.696146</DefaultLongitude> <!-- Default Amsterdam Central Station -->
Dang I was thinking you input it wrong but it looks perfectly fine. I'm not sure bud
-
Member
is there a way to keep Pokemon over a certain CP (say 600) while using duplicate as TransferType?
-
Private
Originally Posted by
shadowht
no.. lol
i want to keep 2 of each, and 1k+cp too if possible
i already tried many codes but didnt found a solution yet, i am new to this programing thing
just gonna keep trying!
Group them by their type then sort then base on cp
Code:
var dupes = allpokemons.GroupBy(p => p.PokemonId)
.Where(x => x.Count() > 1)
.SelectMany(p => p.OrderByDescending(x => x.Cp).Skip(2));
-
Post Thanks / Like - 1 Thanks
shadowht (1 members gave Thanks to dreambar.wi for this useful post)
-
Originally Posted by
omenfiz
if anyone can make this dream come true, OMG..
1. Use Pokeball -> Use Great Ball or Use all ball not only pokeball
2. auto drop item like potion, revive or poke ball
Its already in my github (detectiveSquirrel)