-
Master Sergeant
Info bar on the console now bugged? The info about my level and exp just froze since a few versions ago.
-
Member
Works like a charm as i see.
-
Member
Last edited by JustKemikalz; 07-22-2016 at 01:24 PM.
-
Member
This happens to me after some time:
[20:14:15] (ERROR) Exception: PokemonGo.RocketAPI.Exceptions.InvalidResponseException: Exception of type 'PokemonGo.RocketAPI.Exceptions.InvalidResponseException' was thrown.
at PokemonGo.RocketAPI.Extensions.HttpClientExtensions.<PostProtoPayload>d__0`2.Mov eNext() in G:\BACKUP 2015\moje dokument\poe\PGO\Pokemon-Go-Bot-master2\PokemonGo.RocketAPI\Extensions\HttpClientExtensions.cs:line 22
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotificat ion(Task task)
at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
at PokemonGo.RocketAPI.Client.<EncounterPokemon>d__37.MoveNext() in G:\BACKUP 2015\moje dokument\poe\PGO\Pokemon-Go-Bot-master2\PokemonGo.RocketAPI\Client.cs:line 272
--- End of stack trace from previous location where exception was thrown ---
Bunch of other errors after that.
Any ideas?
-
Member
I dont wanna scroll through 36 pages so, can you do this with a google account?
-
Post Thanks / Like - 1 Thanks
vampass (1 members gave Thanks to kingdrizq for this useful post)
-
Member
Originally Posted by
kingdrizq
I dont wanna scroll through 36 pages so, can you do this with a google account?
Yes. Doing it with my google account too.
-
Member

what does this mean ?>?
-
Member
Do i need to use my Lucky Egg in-game. or is there a setting that can turn it on automatically?
-
Master Sergeant
Can someone tell me why so many lines here?:
Code:
if (masterBallsCount > 0 && pokemonCp >= 1500)
return MiscEnums.Item.ITEM_MASTER_BALL;
if (ultraBallsCount > 0 && pokemonCp >= 1500)
return MiscEnums.Item.ITEM_ULTRA_BALL;
if (greatBallsCount > 0 && pokemonCp >= 1500)
return MiscEnums.Item.ITEM_GREAT_BALL;
if (ultraBallsCount > 0 && pokemonCp >= 1000)
return MiscEnums.Item.ITEM_ULTRA_BALL;
if (greatBallsCount > 0 && pokemonCp >= 1000)
return MiscEnums.Item.ITEM_GREAT_BALL;
if (greatBallsCount > 0 && pokemonCp >= 700)
return MiscEnums.Item.ITEM_GREAT_BALL;
if (pokeBallsCount > 0)
return MiscEnums.Item.ITEM_POKE_BALL;
if (greatBallsCount > 0)
return MiscEnums.Item.ITEM_GREAT_BALL;
if (ultraBallsCount > 0)
return MiscEnums.Item.ITEM_ULTRA_BALL;
if (masterBallsCount > 0)
return MiscEnums.Item.ITEM_MASTER_BALL;
return MiscEnums.Item.ITEM_POKE_BALL;
Can I delete some and leave like this, if I want to use ultra for 1500, great for 700 and normal for rest?:
Code:
if (masterBallsCount > 0 && pokemonCp >= 2000)
return MiscEnums.Item.ITEM_MASTER_BALL;
if (ultraBallsCount > 0 && pokemonCp >= 1500)
return MiscEnums.Item.ITEM_ULTRA_BALL;
if (greatBallsCount > 0 && pokemonCp >= 700)
return MiscEnums.Item.ITEM_GREAT_BALL;
return MiscEnums.Item.ITEM_POKE_BALL;
Also, would be nice if you move pokeballs settings to settings.config. Great job btw.
-
Sergeant
Someone linked a very important reddit thread before, I'm gonna post it again to make sure the devs read it.
https://www.reddit.com/r/pokemongode...fz&sh=d9516e94
This might mean everyone who used the bots is flagged for a ban.
-
Member
is there a option for delay of how long the bot stays at each pokestop? Because sometimes pokemon take some time before appearing. Also i have a feeling that the pokecolor is faster than necro.
-
Member
yo how do you run the sin file
-
Member
excellent work with this program. Major props to whoever was involved.
where do we change inventory settings in visual studio?
-
Member
When i try to put in the lat and lng it is giving me this error: '-37.764737' cannot be converted to an instance of type 'double'.
Anyone any idea what that might mean?
-
Master Sergeant
3> PokemonGo.RocketAPI.Console -> C:\New\PokemonGo.RocketAPI.Console\bin\Debug\PokemonGo.RocketAPI.Console.exe
========== Build: 3 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
Newest version, success while building but console.exe is not being created on the directory. What should I do?