C# Bot for Farming Pokestops & Catching Pokemon menu

User Tag List

Page 9 of 151 FirstFirst ... 567891011121359109 ... LastLast
Results 121 to 135 of 2253
  1. #121
    Spegeli86's Avatar Contributor
    Reputation
    91
    Join Date
    Jul 2016
    Posts
    54
    Thanks G/R
    0/71
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When i saw that right, on the PTC Version there is Google Login support too?
    Is the Google Login in the PTC Version broken?
    Last edited by Spegeli86; 07-19-2016 at 06:12 PM.

    C# Bot for Farming Pokestops & Catching Pokemon
  2. #122
    GreamDesu's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    19
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OP, can you make bot move while farming? It would be awesome, because eggs give a lot of XP

  3. #123
    dv999's Avatar Sergeant
    Reputation
    22
    Join Date
    Jul 2016
    Posts
    41
    Thanks G/R
    3/19
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OP is not the dev

  4. #124
    ensar00's Avatar Member
    Reputation
    3
    Join Date
    Aug 2009
    Posts
    11
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GiftedNoob View Post
    So i got it to work but on the CMD im not noticing the bot catching any pokemon. When i get 50xp i know it's for pokestops, but when i get 100 exp does that mean i got a pokemon?
    When it works it should look like this, except the first a few rows that's my debug code.

    Attached Thumbnails Attached Thumbnails C# Bot for Farming Pokestops & Catching Pokemon-jlqbp4v-jpg  

  5. Thanks Mew351 (1 members gave Thanks to ensar00 for this useful post)
  6. #125
    CrucialStress's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    13
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if anyone has the google version compiled please send me a link as i am not doing something right or teamviewer me thanks

  7. #126
    Mew351's Avatar Site Donator CoreCoins Purchaser
    Reputation
    13
    Join Date
    Oct 2013
    Posts
    85
    Thanks G/R
    38/12
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ensar00 View Post
    When it works it should look like this, except the first a few rows that's my debug code.

    Mine was running for about 45~ minutes, but then it DC'd ;(

  8. #127
    gorlhax's Avatar Corporal CoreCoins Purchaser
    Reputation
    8
    Join Date
    Jul 2016
    Posts
    32
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay, so from now on, if anyone needs help, please PM me first before writing here - I will help you and take the work off the mods

    C# Bot for Farming Pokestops & Catching Pokemon-chlcarm-png

  9. #128
    Neer's Avatar Trend Rider Authenticator enabled
    Reputation
    1460
    Join Date
    Apr 2007
    Posts
    751
    Thanks G/R
    183/834
    Trade Feedback
    6 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GreamDesu View Post
    OP, can you make bot move while farming? It would be awesome, because eggs give a lot of XP
    Someone is currently working on this, https://github.com/UntilSunrise/Pokemon-Go-Rocket-API Will be fun when it fully works.

  10. Thanks GreamDesu, WoWSondermüll (2 members gave Thanks to Neer for this useful post)
  11. #129
    Neer's Avatar Trend Rider Authenticator enabled
    Reputation
    1460
    Join Date
    Apr 2007
    Posts
    751
    Thanks G/R
    183/834
    Trade Feedback
    6 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ensar00 View Post
    When it works it should look like this, except the first a few rows that's my debug code.

    Looks like mine

  12. Thanks WoWSondermüll (1 members gave Thanks to Neer for this useful post)
  13. #130
    dv999's Avatar Sergeant
    Reputation
    22
    Join Date
    Jul 2016
    Posts
    41
    Thanks G/R
    3/19
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    replace in google version to get pokemon name

    private static async Task ExecuteCatchAllNearbyPokemons(Client client)
    {
    var mapObjects = await client.GetMapObjects();

    var pokemons = mapObjects.Payload[0].Profile.SelectMany(i => i.MapPokemon);

    foreach (var pokemon in pokemons)
    {
    var update = await client.UpdatePlayerLocation(pokemon.Latitude, pokemon.Longitude);
    var encounterPokemonRespone = await client.EncounterPokemon(pokemon.EncounterId, pokemon.SpawnpointId);
    CatchPokemonResponse caughtPokemonResponse;
    do
    {
    caughtPokemonResponse = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude);
    }
    while (caughtPokemonResponse.Payload[0].Status == 2);

    System.Console.WriteLine(caughtPokemonResponse.Payload[0].Status == 1 ? $"We caught a {GetFriendlyPokemonName(pokemon.PokedexTypeId)}" : $"{GetFriendlyPokemonName(pokemon.PokedexTypeId)} got away..");
    await Task.Delay(6000);
    }

  14. #131
    Neer's Avatar Trend Rider Authenticator enabled
    Reputation
    1460
    Join Date
    Apr 2007
    Posts
    751
    Thanks G/R
    183/834
    Trade Feedback
    6 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dv999 View Post
    replace in google version to get pokemon name

    private static async Task ExecuteCatchAllNearbyPokemons(Client client)
    {
    var mapObjects = await client.GetMapObjects();

    var pokemons = mapObjects.Payload[0].Profile.SelectMany(i => i.MapPokemon);

    foreach (var pokemon in pokemons)
    {
    var update = await client.UpdatePlayerLocation(pokemon.Latitude, pokemon.Longitude);
    var encounterPokemonRespone = await client.EncounterPokemon(pokemon.EncounterId, pokemon.SpawnpointId);
    CatchPokemonResponse caughtPokemonResponse;
    do
    {
    caughtPokemonResponse = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude);
    }
    while (caughtPokemonResponse.Payload[0].Status == 2);

    System.Console.WriteLine(caughtPokemonResponse.Payload[0].Status == 1 ? $"We caught a {GetFriendlyPokemonName(pokemon.PokedexTypeId)}" : $"{GetFriendlyPokemonName(pokemon.PokedexTypeId)} got away..");
    await Task.Delay(6000);
    }
    Wrap that in [CODE]
    Doubt the code will work though.
    Last edited by Neer; 07-19-2016 at 06:26 PM.

  15. Thanks WoWSondermüll (1 members gave Thanks to Neer for this useful post)
  16. #132
    cedricdu94's Avatar Member
    Reputation
    11
    Join Date
    May 2009
    Posts
    175
    Thanks G/R
    9/10
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have this error C# Bot for Farming Pokestops & Catching Pokemon-0uoeaqv-jpg
    Last edited by cedricdu94; 07-19-2016 at 06:26 PM.

  17. #133
    CrucialStress's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    13
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i pm you thanks alot

  18. #134
    GreamDesu's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    19
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dv999 View Post
    replace in google version to get pokemon name

    private static async Task ExecuteCatchAllNearbyPokemons(Client client)
    {
    var mapObjects = await client.GetMapObjects();

    var pokemons = mapObjects.Payload[0].Profile.SelectMany(i => i.MapPokemon);

    foreach (var pokemon in pokemons)
    {
    var update = await client.UpdatePlayerLocation(pokemon.Latitude, pokemon.Longitude);
    var encounterPokemonRespone = await client.EncounterPokemon(pokemon.EncounterId, pokemon.SpawnpointId);
    CatchPokemonResponse caughtPokemonResponse;
    do
    {
    caughtPokemonResponse = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude);
    }
    while (caughtPokemonResponse.Payload[0].Status == 2);

    System.Console.WriteLine(caughtPokemonResponse.Payload[0].Status == 1 ? $"We caught a {GetFriendlyPokemonName(pokemon.PokedexTypeId)}" : $"{GetFriendlyPokemonName(pokemon.PokedexTypeId)} got away..");
    await Task.Delay(6000);
    }
    Where it goes?

  19. #135
    OvverWatchUsername's Avatar Member
    Reputation
    3
    Join Date
    Jun 2016
    Posts
    14
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone notice how your stardust count doesn't go up? Unless mine is glitched or something

Page 9 of 151 FirstFirst ... 567891011121359109 ... LastLast

Similar Threads

  1. [Bot] Looking for working BOT only farm Pokestops!
    By samhayne in forum Pokemon GO Hacks|Cheats
    Replies: 4
    Last Post: 08-16-2016, 08:51 PM
  2. [How-To] Question: Is there a bot that farms pokestops ONLY for items and NOT catch pokemon?
    By Aubrionnax in forum Pokemon GO Hacks|Cheats
    Replies: 3
    Last Post: 07-28-2016, 06:13 AM
  3. Best Bot for farm?
    By tanksz in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 11-09-2013, 09:01 AM
  4. What is the best Bot for farming?
    By CookieMage in forum WoW Bots Questions & Requests
    Replies: 4
    Last Post: 05-15-2013, 11:41 AM
  5. Bot for farming eggs?
    By dw~ in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 10-16-2012, 06:30 AM
All times are GMT -5. The time now is 02:45 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search