-
Master Sergeant
Around 10-12min and no crash but just stop farming.
-
Member
i changed the print command to System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {bag.XpAwarded}, Gems: { bag.GemsAwarded}, Eggs: {bag.EggPokemon} Items: {GetFriendlyItemsString(bag.Items)}");
-
Post Thanks / Like - 1 Thanks
leele2 (1 members gave Thanks to tets for this useful post)
-
Member
Please, I can't get it running, now it just stops here, it does nothing. I followed every steps, what am I supposed to do ?
-
Member
Originally Posted by
tets
i changed the print command to System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {bag.XpAwarded}, Gems: { bag.GemsAwarded}, Eggs: {bag.EggPokemon} Items: {GetFriendlyItemsString(bag.Items)}");
may I ask why?
-
Member
i make a videotutorial tomorrow atm im off.
-
Master Sergeant
Originally Posted by
eyoubdw59
Please, I can't get it running, now it just stops here, it does nothing. I followed every steps, what am I supposed to do ?

Are you sure that you put good location with pokestops nearby?
-
Member
running pretty beautifully the latest google version first it said running away no xp but i recompiled it and set console to my startup seems to be peachy now.
-
Member
Hi guys, first of all I'd like to thank you Neer for the upload ! Secondly, I feel like the crashes are related to the server issue of when you throw a pokeball at a pokemon and it just freezes. It happens all the time even when I'm not on Nox,
-
Member
oh nice. If you don't mind sharing, what file would I need to edit?
-
Member
-
Originally Posted by
tets
i changed the print command to System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {bag.XpAwarded}, Gems: { bag.GemsAwarded}, Eggs: {bag.EggPokemon} Items: {GetFriendlyItemsString(bag.Items)}");
wouldn't
System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {bag.XpAwarded}, Gems: { bag.GemsAwarded}, Eggs: {bag.EggPokemon}, Items: {GetFriendlyItemsString(bag.Items)}");
be correct?
-
Post Thanks / Like - 1 Thanks
leele2 (1 members gave Thanks to deadlywario0 for this useful post)
-
Member
Thank you for the wonderful support OP. I have a question regarding the API, is there a call function to release the pokemon?
i was thinking of doing something like
System.Console.WriteLine(caughtPokemonResponse.Payload[0].Status == 1 ? $"We caught a {GetFriendlyPokemonName(pokemon.PokedexTypeId)
if(GetFriendlyPokemonName(pokemon.PokedexTypeId) == "Pidgey"){
release/transfer function();
print(pokemonname released;
}"
Another question: How can we change the google login type, so that we can input gmail and password directly to the console? (multiple accounts)?
Again thank you for your work.
-
Contributor
@ALL: The Servers are instable and thats why the script sometimes stop or crash when he got a bad return from the server...
-
Member
Originally Posted by
tets
even with a long delay it still decides to stop after a while

ok guys for those who are complaining about stopping.
Its the server not the api.
Here is a quick fix.
save as .bat and change the path to your exe file that you compiled.change timeout below the start cmd to whatever timeout you want (in seconds) for the process to kill itself. Enjoy automagic restarts of bot.
:1
TIMEOUT /T 5
start cmd /c "F:\C MOVE\Desktop\Pokemon-Go-Rocket-API-master\PokemonGo\RocketAPI\Console\bin\Debug\PokemonGo.RocketAPI.Console.exe"
TIMEOUT /T 120
taskkill /im PokemonGo.RocketAPI.Console.exe /F
goto 1
-
Member