C# Bot for Farming Pokestops & Catching Pokemon menu

Shout-Out

User Tag List

Page 12 of 151 FirstFirst ... 891011121314151662112 ... LastLast
Results 166 to 180 of 2253
  1. #166
    XeroRazer's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just a quick note, this will hatch your eggs if you pick a spot with enough PokeStops located within short distances of each other. I popped a 2km egg in when I started, and it's at 1.6km now.

    C# Bot for Farming Pokestops & Catching Pokemon
  2. #167
    suicideSQUAD's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can I stop it from farming pokemons and only visit pokestops? (google api version)

  3. #168
    uploader619's Avatar Knight
    Reputation
    65
    Join Date
    Jul 2016
    Posts
    219
    Thanks G/R
    13/56
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dv999 View Post
    @neer att jag inte snackar skit :P that i'm not talking bs

    adding more goodies



    useless.. probably
    can you confirm if its walking or teleporting of if there is apossibility for him to move to location rather than teleporting so they get exp also from egg hatching

  4. #169
    vayneprod's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where to set coords and username?

  5. #170
    Plawed's Avatar Member
    Reputation
    3
    Join Date
    Apr 2014
    Posts
    37
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think you get stardust, but it doesnt update unless you reload your pgo client

  6. #171
    Smoshi's Avatar Member
    Reputation
    3
    Join Date
    Apr 2007
    Posts
    59
    Thanks G/R
    4/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pinn90 View Post
    And how much exp did you get over last 5/10min?
    Not much. The thing seems pretty slow. I'd be better off just playing the game normally.

  7. #172
    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)
    If you're using the Google version, you can fix the pokemon caught by using the code from the PTC.

    Code:
            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);
                    //var caughtPokemonResponse = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude);
                    CatchPokemonResponse caughtPokemonResponse1;
                    do
                    {
                        caughtPokemonResponse1 = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude);
                    }
                    while (caughtPokemonResponse1.Payload[0].Status == 2);
    
                    System.Console.WriteLine(caughtPokemonResponse1.Payload[0].Status == 1 ? $"We caught a {GetFriendlyPokemonName(pokemon.PokedexTypeId)}" : $"{GetFriendlyPokemonName(pokemon.PokedexTypeId)} got away..");
                    await Task.Delay(5000);
                }
    
            }
    
            private static string GetFriendlyPokemonName(MapObjectsResponse.Types.Payload.Types.PokemonIds id)
            {
                var name = Enum.GetName(typeof(InventoryResponse.Types.PokemonProto.Types.PokemonIds), id);
                return name?.Substring(name.IndexOf("Pokemon") + 7);
            }
    This is the Google Version :

    C# Bot for Farming Pokestops & Catching Pokemon-19ceb50439-png

  8. #173
    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)
    Originally Posted by uploader619 View Post
    can you confirm if its walking or teleporting of if there is apossibility for him to move to location rather than teleporting so they get exp also from egg hatching
    Yes it's moving, but it's not alot

  9. #174
    suicideSQUAD's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by OvverWatchUsername View Post
    If you're using the Google version, you can fix the pokemon caught by using the code from the PTC.

    Code:
            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);
                    //var caughtPokemonResponse = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude);
                    CatchPokemonResponse caughtPokemonResponse1;
                    do
                    {
                        caughtPokemonResponse1 = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude);
                    }
                    while (caughtPokemonResponse1.Payload[0].Status == 2);
    
                    System.Console.WriteLine(caughtPokemonResponse1.Payload[0].Status == 1 ? $"We caught a {GetFriendlyPokemonName(pokemon.PokedexTypeId)}" : $"{GetFriendlyPokemonName(pokemon.PokedexTypeId)} got away..");
                    await Task.Delay(5000);
                }
    
            }
    
            private static string GetFriendlyPokemonName(MapObjectsResponse.Types.Payload.Types.PokemonIds id)
            {
                var name = Enum.GetName(typeof(InventoryResponse.Types.PokemonProto.Types.PokemonIds), id);
                return name?.Substring(name.IndexOf("Pokemon") + 7);
            }
    And where do I place it?

  10. #175
    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)
    Originally Posted by OvverWatchUsername View Post
    If you're using the Google version, you can fix the pokemon caught by using the code from the PTC.

    Code:
            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);
                    //var caughtPokemonResponse = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude);
                    CatchPokemonResponse caughtPokemonResponse1;
                    do
                    {
                        caughtPokemonResponse1 = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude);
                    }
                    while (caughtPokemonResponse1.Payload[0].Status == 2);
    
                    System.Console.WriteLine(caughtPokemonResponse1.Payload[0].Status == 1 ? $"We caught a {GetFriendlyPokemonName(pokemon.PokedexTypeId)}" : $"{GetFriendlyPokemonName(pokemon.PokedexTypeId)} got away..");
                    await Task.Delay(5000);
                }
    
            }
    
            private static string GetFriendlyPokemonName(MapObjectsResponse.Types.Payload.Types.PokemonIds id)
            {
                var name = Enum.GetName(typeof(InventoryResponse.Types.PokemonProto.Types.PokemonIds), id);
                return name?.Substring(name.IndexOf("Pokemon") + 7);
            }
    This is the Google Version :

    C# Bot for Farming Pokestops & Catching Pokemon-19ceb50439-png
    might have to fix the protobuff too

  11. #176
    vayneprod's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    pressed ctrl f5 and says a project w output class directory cannot be started directly?

  12. #177
    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)
    Originally Posted by suicideSQUAD View Post
    And where do I place it?
    Inside Program.CS

    C# Bot for Farming Pokestops & Catching Pokemon-6aa0164bb5-jpg

  13. Thanks suicideSQUAD (1 members gave Thanks to OvverWatchUsername for this useful post)
  14. #178
    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)
    Originally Posted by suicideSQUAD View Post
    And where do I place it?
    Inside Program.CS

    http://puu.sh/q7xKB/6aa0164bb5.png

  15. #179
    suicideSQUAD's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by OvverWatchUsername View Post
    Inside Program.CS

    C# Bot for Farming Pokestops & Catching Pokemon-6aa0164bb5-jpg
    Do I have to fix the protobuff too?

  16. #180
    golditrdp's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    stuck after succesfully received token, what should i do

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 12:03 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