So in the new 0.33 update, this:
Added a dialog to remind Trainers that they should not play while traveling above a certain speed. Trainers must confirm they are not driving in order to continue playing.
Does not effect the bot?
thanks for update Spegeli,
your bot feat pokefeeder .
http://prnt.sc/c3e9rj
![]()
Last edited by ronaldwitt; 08-09-2016 at 01:57 AM.
Anyone have a clue why my UserSettings.settings wouldn't appear in the build menu in the right panel? It was fine until the API changed. I've tried deleting the folder for the bot, as well as uninstalling and reinstalling Visual Studio, still no UserSettings.settings....
how do you change item settings? i thought in the older versions you could adjust the amount of items, but i can't find the options here.
edit ur Settings.cs
Code:public ICollection<KeyValuePair<ItemId, int>> ItemRecycleFilter => new[] { new KeyValuePair<ItemId, int>(ItemId.ItemUnknown, 0), new KeyValuePair<ItemId, int>(ItemId.ItemPokeBall, 100), new KeyValuePair<ItemId, int>(ItemId.ItemGreatBall, 100), new KeyValuePair<ItemId, int>(ItemId.ItemUltraBall, 100), new KeyValuePair<ItemId, int>(ItemId.ItemMasterBall, 100), new KeyValuePair<ItemId, int>(ItemId.ItemPotion, 0), new KeyValuePair<ItemId, int>(ItemId.ItemSuperPotion, 0), new KeyValuePair<ItemId, int>(ItemId.ItemHyperPotion, 0), new KeyValuePair<ItemId, int>(ItemId.ItemMaxPotion, 0), new KeyValuePair<ItemId, int>(ItemId.ItemRevive, 0), new KeyValuePair<ItemId, int>(ItemId.ItemMaxRevive, 25), new KeyValuePair<ItemId, int>(ItemId.ItemLuckyEgg, 200), new KeyValuePair<ItemId, int>(ItemId.ItemIncenseOrdinary, 100), new KeyValuePair<ItemId, int>(ItemId.ItemIncenseSpicy, 100), new KeyValuePair<ItemId, int>(ItemId.ItemIncenseCool, 100), new KeyValuePair<ItemId, int>(ItemId.ItemIncenseFloral, 100), new KeyValuePair<ItemId, int>(ItemId.ItemTroyDisk, 100), new KeyValuePair<ItemId, int>(ItemId.ItemXAttack, 100), new KeyValuePair<ItemId, int>(ItemId.ItemXDefense, 100), new KeyValuePair<ItemId, int>(ItemId.ItemXMiracle, 100), new KeyValuePair<ItemId, int>(ItemId.ItemRazzBerry, 100), new KeyValuePair<ItemId, int>(ItemId.ItemBlukBerry, 10), new KeyValuePair<ItemId, int>(ItemId.ItemNanabBerry, 10), new KeyValuePair<ItemId, int>(ItemId.ItemWeparBerry, 30), new KeyValuePair<ItemId, int>(ItemId.ItemPinapBerry, 30), new KeyValuePair<ItemId, int>(ItemId.ItemSpecialCamera, 100), new KeyValuePair<ItemId, int>(ItemId.ItemIncubatorBasicUnlimited, 100), new KeyValuePair<ItemId, int>(ItemId.ItemIncubatorBasic, 100), new KeyValuePair<ItemId, int>(ItemId.ItemPokemonStorageUpgrade, 100), new KeyValuePair<ItemId, int>(ItemId.ItemItemStorageUpgrade, 100), };
i dont have
download source on github https://github.com/Spegeli/PokemoGoBot-GottaCatchEmAll/
Hello,
Yesterday my Bots got a Softbann after a few minutes...
Today i didnt test it... If i run more then 1 Bot i get a softbann?
Is it fixed with the new update or how to solve the softbann problem
you must add some new code
i found that when i use bot from (thanks to: MonsterMMORPG) http://www.ownedcore.com/forums/poke...rming-bot.html (Pokemon GO Rare Pokemon Hunting Farming Bot)
here is example code
+example read txt list pokemons location (Logic.cs | public class Logic)
im just trial n error.+example execute Sniper (Logic.cs | public class Logic)Code:private static List<string> funcReadRare() { List<string> pkmnRareInfo = File.ReadAllLines(@"D:\PokeBOT\PokeSnipe\RareLoc.txt").ToList(); try { return pkmnRareInfo; } catch (Exception E) { Logger.Write($"" + E.Message?.ToString(), LogLevel.Error); Logger.Write($"" + E.InnerException?.Message?.ToString(), LogLevel.Error); return pkmnRareInfo; } }
+example make pogofeeder save list to txt (ClientWriters.cs | public async Task FeedToClients)Code:private async Task ExeSniper() { var pkmnList = funcReadRare(); //Logger.Write($"Sniping mode, Catch Pokemon!", LogLevel.Info); //Logger.Write($"Location found : " + pkmnList.Count, LogLevel.Info); int pkmnLoop = 1; double pkmnLat = 0; double pkmnLong = 0; string pkmnLocate = ""; double lastCoordLat = _client.CurrentLatitude; double lastCoordLong = _client.CurrentLongitude; bool blWentAnyLoc = false; for (int i = 0; i < pkmnList.Count; i++) { foreach (var pkmnPos in pkmnList) { if (trackedPos.Contains(pkmnPos)) continue; List<string> posData = pkmnPos.Split('|').ToList(); double pkmnPosLat; double pkmnPosLong; double.TryParse(pkmnPos.Split('|')[0].Replace(".", ","), out pkmnPosLat); double.TryParse(pkmnPos.Split('|')[1].Replace(".", ","), out pkmnPosLong); if (pkmnPosLat == 0 || pkmnPosLong == 0) { trackedPos.Add(pkmnLocate); continue; } if (pkmnPosLat >= -90 && pkmnPosLat <= 90 && pkmnPosLong >= -180 && pkmnPosLong <= 180) { pkmnLat = pkmnPosLat; pkmnLong = pkmnPosLong; pkmnLocate = pkmnPos; } else { Logger.Write($"Invalid/Reverse Coordinate! {pkmnPosLat} | {pkmnPosLong}", LogLevel.Error); trackedPos.Add(pkmnLocate); continue; } } if (blCriticalBall == true) { Logger.Write($"Critical Ball . Change Mode to PokeStops Farming!", LogLevel.Warning); enableSniper = false; break; } if (pkmnLat != 0 && pkmnLong != 0) { blWentAnyLoc = true; trackedPos.Add(pkmnLocate); // Go to Pokemon Position while (_client.CurrentLatitude == lastCoordLat && _client.CurrentLongitude == lastCoordLong) { await _client.Player.UpdatePlayerLocation(pkmnLat, pkmnLong, _client.Settings.DefaultAltitude); //Logger.Write($"Teleport to [ " + pkmnLat + "," + pkmnLong + " ] ", LogLevel.Warning); if (_client.CurrentLatitude == pkmnLat && _client.CurrentLongitude == pkmnLong) break; } // Execute catch Pokemon await ExecuteCatchAllNearbyPokemons(lastCoordLat, lastCoordLong); pkmnLoop++; pkmnLat = 0; pkmnLong = 0; } } if (blWentAnyLoc == false) { Logger.Write($"No pokemon found!", LogLevel.Info); await ExecuteCatchAllNearbyPokemons(lastCoordLat, lastCoordLong); } }
Code:double xlat = Convert.ToDouble(target.Latitude); double xlon = Convert.ToDouble(target.Longitude); // write to file if (xlat != 0 && xlon != 0 && xlat >= -90 && xlat <= 90 && xlon >= -180 && xlon <= 180) using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"D:\PokeBOT\PokeSnipe\RareLoc.txt", true)) { file.WriteLine($"{xlat}|{xlon}"); file.Close(); }
maybe another member can implement it to get best and efficient bot
dont be late, catch it asap
get ur 100% IV pokemons with this
Screenshot by Lightshot
![]()
Last edited by ronaldwitt; 08-09-2016 at 04:40 AM.
Unable to load DLL 'encrypt.dll': The specified module could not be found. (Exce
ption from HRESULT: 0x8007007E)
Unable to load DLL 'encrypt.dll': The specified module could not be found. (Exce
ption from HRESULT: 0x8007007E)
[Unable to load DLL 'encrypt.dll': The specified module could not be found. (Exce
ption from HRESULT: 0x8007007E)
[21:11:26] (ATTENTION) No usable PokeStops found in your area. Is your maximum d
istance too small?
Unable to load DLL 'encrypt.dll': The specified module could not be found. (Exce
ption from HRESULT: 0x8007007E)
[21:11:39] (ATTENTION) No usable PokeStops found in your area. Is your maximum d
istance too small?
Iam using 5km around and got error this everytime i start, already checked and couldn't understand anything (first time using VS)
Solved after download from Spegeli directly (after wrong download from google XD
Last edited by togechan; 08-09-2016 at 09:43 AM.
I have this error:
No usable PokeStops found in your area. Is your maximum distance too small?
Any ideas how to solve it?