Is it possible to let the bot stand still in 1 spot? I think it got softbanned,because it moved.(It wasnt my fault for sure)
Thanks!
Is it possible to let the bot stand still in 1 spot? I think it got softbanned,because it moved.(It wasnt my fault for sure)
Thanks!
try
{
System.Console.WriteLine("||Farm Started||");
await ExecuteFarmingPokestopsAndPokemons(client);
System.Console.WriteLine("Unexpected stop? Restarting in 40 seconds.");
await Task.Delay(40000);
Execute();
}
catch (TaskCanceledException tce) { System.Console.WriteLine("Task Canceled Exception - Restarting"); Execute(); }
catch (UriFormatException ufe) { System.Console.WriteLine("System URI Format Exception - Restarting"); Execute(); }
catch (ArgumentOutOfRangeException aore) { System.Console.WriteLine("ArgumentOutOfRangeException - Restarting"); Execute(); }
catch (NullReferenceException nre) { System.Console.WriteLine("Null Refference - Restarting"); Execute(); }
I have a quick question the build I was running earlier used this at Line153 so if the bot stopped or anything it would automatically restart. Anyone know how to fix that with this new version? D; I can't figure out where to put it..
bot stops doing anything after 10 minutes or so without any errors,if i re-run the script it goes on.
Whats the problem and How to fix that?
Anyone got a workaround how to make it save pidgeys and not transfer them?
I have duplicate setting.
Kindly let me know!
So, this just happened:
A magikarp with unknown CP?Code:[16:57:55] Caught: Staryu ( 291 CP ) [16:58:06] PokeStop XP: 0, Gems: 0, Eggs: Items: [16:58:22] Goldeen ( 449 CP ) got away.. [16:58:33] Magikarp ( CP ) got away.. [16:58:43] Caught: Magikarp ( 10 CP ) [16:58:54] PokeStop XP: 0, Gems: 0, Eggs: Items:
.
bitcoin? or gold coin?
.
How do I launch this using VS Code?
To clarify, it asks me for some setup after pressing ctrl+f5 and I don't know what to do c:
Is it possible to make sure favorited pokemon don't get transfered? I have a few low CP pokemons that have good IVs and i would like to keep them. Is there a way to make the bot not transfer them as soon as a higher CP (but probably worse IVs) shows up? Giving the pokemon the star and making a check for favorites when you are about to grind some meat might do the trick no?
Anyway this was just a suggestion not a demand lol i'm glad there are some people smarter than me out there that can come up with this little gems of code. Nice one guys, thanks for the free bot, a few pikachus worldwide are very happy now ahah
Anyone know where to put the old code for line 153 in for the new one? My bot stops working after like 5 minutes so I want it to restart..
try
{
System.Console.WriteLine("||Farm Started||");
await ExecuteFarmingPokestopsAndPokemons(client);
System.Console.WriteLine("Unexpected stop? Restarting in 40 seconds.");
await Task.Delay(40000);
Execute();
}
catch (TaskCanceledException tce) { System.Console.WriteLine("Task Canceled Exception - Restarting"); Execute(); }
catch (UriFormatException ufe) { System.Console.WriteLine("System URI Format Exception - Restarting"); Execute(); }
catch (ArgumentOutOfRangeException aore) { System.Console.WriteLine("ArgumentOutOfRangeException - Restarting"); Execute(); }
catch (NullReferenceException nre) { System.Console.WriteLine("Null Refference - Restarting"); Execute(); }
I am not sure, but for me it looks like the program only get near PokeStops for one time, when you start the programm, and will stop working after it farmed all of them.
Just adding these line to the end of this method could solve the problem: Execute();
(Or just add this to the end of the Execute() method)
Code:private static async Task ExecuteFarmingPokestopsAndPokemons(Client client) { int counter = 0; var mapObjects = await client.GetMapObjects(); var pokeStops = mapObjects.MapCells.SelectMany(i => i.Forts) .Where( i => i.Type == FortType.Checkpoint && i.CooldownCompleteTimestampMs < DateTime.UtcNow.ToUnixTime()); foreach (var pokeStop in pokeStops) { var update = await client.UpdatePlayerLocation(pokeStop.Latitude, pokeStop.Longitude); var fortInfo = await client.GetFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude); var fortSearch = await client.SearchFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude); System.Console.WriteLine( $"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {fortSearch.ExperienceAwarded}, Gems: {fortSearch.GemsAwarded}, Eggs: {fortSearch.PokemonDataEgg} Items: {GetFriendlyItemsString(fortSearch.ItemsAwarded)}"); await Task.Delay(4000); await ExecuteCatchAllNearbyPokemons(client); await Task.Delay(6000); await EvolveAndTransfer(client); } }
Last version shows fine the token, nevermind.
Anyone tried Santa Monica Pier as a spot for the bot to work?If you had succesfull farming with it,can you tell me what coordinated you used?