C# Bot for Farming Pokestops & Catching Pokemon menu

User Tag List

Page 145 of 151 FirstFirst ... 4595141142143144145146147148149 ... LastLast
Results 2,161 to 2,175 of 2253
  1. #2161
    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)
    updated main post with new information and a new guide

    C# Bot for Farming Pokestops & Catching Pokemon
  2. Thanks Gandalf15, husec, MonsterMMORPG, iverymes, Aubrionnax (5 members gave Thanks to Neer for this useful post)
  3. #2162
    axewfious's Avatar Sergeant
    Reputation
    10
    Join Date
    Jul 2016
    Posts
    52
    Thanks G/R
    4/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chancity View Post
    TOO USE DIFFERENT POKEBALLS


    This is for the latest github version
    Code:
                    private static async Task<MiscEnums.Item> GetPokeBall(Client client)
            {
                var inventory = await client.GetInventory();
                var ballCollection = inventory.InventoryDelta.InventoryItems
                    .Select(i => i.InventoryItemData?.Item)
                    .Where(p => p != null)
                    .GroupBy(i => (MiscEnums.Item) i.Item_)
                    .Select(kvp => new {ItemId = kvp.Key, Amount = kvp.Sum(x => x.Count)})
                    .Where(y => y.ItemId == MiscEnums.Item.ITEM_POKE_BALL
                                || y.ItemId == MiscEnums.Item.ITEM_GREAT_BALL
                                || y.ItemId == MiscEnums.Item.ITEM_ULTRA_BALL
                                || y.ItemId == MiscEnums.Item.ITEM_MASTER_BALL);
    
                var greatBallsCount = ballCollection.Where(p => p.ItemId == MiscEnums.Item.ITEM_GREAT_BALL).
                    DefaultIfEmpty(new {ItemId = MiscEnums.Item.ITEM_GREAT_BALL, Amount = 0}).FirstOrDefault().Amount;
                var ultraBallsCount = ballCollection.Where(p => p.ItemId == MiscEnums.Item.ITEM_ULTRA_BALL).
                    DefaultIfEmpty(new {ItemId = MiscEnums.Item.ITEM_ULTRA_BALL, Amount = 0}).FirstOrDefault().Amount;
                var masterBallsCount = ballCollection.Where(p => p.ItemId == MiscEnums.Item.ITEM_MASTER_BALL).
                    DefaultIfEmpty(new {ItemId = MiscEnums.Item.ITEM_MASTER_BALL, Amount = 0}).FirstOrDefault().Amount;
    
                if (masterBallsCount > 0)
                {
                    System.Console.WriteLine("Using Master Ball");
                    return MiscEnums.Item.ITEM_MASTER_BALL;
                }
    
                if (ultraBallsCount > 0)
                {
                    System.Console.WriteLine("Using Ultra Ball");
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
                }
    
                if (greatBallsCount > 0)
                {
                    System.Console.WriteLine("Using Great Ball");
                    return MiscEnums.Item.ITEM_GREAT_BALL;
                }
    
                System.Console.WriteLine("Using Poke Ball");
                return MiscEnums.Item.ITEM_POKE_BALL;
    
            }
            private static async Task ExecuteCatchAllNearbyPokemons(Client client)
            {
                var mapObjects = await client.GetMapObjects();
    
                var pokemons = mapObjects.MapCells.SelectMany(i => i.CatchablePokemons);
    
                foreach (var pokemon in pokemons)
                {
                    var update = await client.UpdatePlayerLocation(pokemon.Latitude, pokemon.Longitude);
                    var encounterPokemonRespone = await client.EncounterPokemon(pokemon.EncounterId, pokemon.SpawnpointId);
                    var pokeball = await GetPokeBall(client);
    
                    CatchPokemonResponse caughtPokemonResponse;
                    do
                    {
                        caughtPokemonResponse = await client.CatchPokemon(pokemon.EncounterId, pokemon.SpawnpointId, pokemon.Latitude, pokemon.Longitude, pokeball); //note: reverted from settings because this should not be part of settings but part of logic
                    } 
                    while(caughtPokemonResponse.Status == CatchPokemonResponse.Types.CatchStatus.CatchMissed);
    
                    System.Console.WriteLine(caughtPokemonResponse.Status == CatchPokemonResponse.Types.CatchStatus.CatchSuccess ? $"[{DateTime.Now.ToString("HH:mm:ss")}] We caught a {pokemon.PokemonId}" : $"[{DateTime.Now.ToString("HH:mm:ss")}] {pokemon.PokemonId} got away..");
                    await Task.Delay(5000);
                    
    
                    await Task.Delay(5000);
                }
            }
    I get numerous errors using this code, but with the one quoted by users who replied before, I get "The Name 'GetInventory' does not exist in the current context" Any help?

  4. #2163
    james153's Avatar Member
    Reputation
    2
    Join Date
    Apr 2016
    Posts
    26
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you so much :-)

  5. #2164
    Subcore's Avatar Contributor

    Reputation
    98
    Join Date
    Oct 2009
    Posts
    170
    Thanks G/R
    23/22
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MacArtee View Post
    Hey, Is there any way, how can I see , what is bot doing, when I am logged in with my google account?
    Otherwise, You've done nice job!
    Only in console window. It will tell you what you catched, how many exp you gained, which items you gained, etc.

  6. #2165
    flafisa's Avatar Member
    Reputation
    1
    Join Date
    Feb 2014
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why is my progress not updating when I check on NOX? Bot is farming stops and pokemons perfectly (I'm getting exp and everything), but nothing is actually showing up when I log in.

    Anyone got solution for this? I've upgraded to PokeColor and I still don't see any progress.

  7. #2166
    Marlb0ro's Avatar Member
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    28
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Neer it wont get exp from a pokestop and im not soft baned.. its only able to catch pokemons
    https://gyazo.com/556b956f49581d5a273fdaad9fd73adf
    and the delay is killing me :~

  8. #2167
    MonsterMMORPG's Avatar Active Member
    Reputation
    71
    Join Date
    Jun 2012
    Posts
    461
    Thanks G/R
    44/48
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    awesome

    i am currently using my modified version which is based on version 5

    i will wait until it gets more stabilized to move your version ty

    i am waiting you to improve farming logic of the bot

  9. #2168
    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)

  10. Thanks MonsterMMORPG, Aubrionnax (2 members gave Thanks to Neer for this useful post)
  11. #2169
    Reuspa's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    73
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    new topic was released

  12. #2170
    Fanasim's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Error: Attribute 'program' does not exist

    I can't get the program running, what do I have to change?
    The error: Attribute 'program' does not exist keeps coming
    C# Bot for Farming Pokestops &amp; Catching Pokemon-attri-jpgC# Bot for Farming Pokestops &amp; Catching Pokemon-attri-jpg
    Attached Thumbnails Attached Thumbnails C# Bot for Farming Pokestops &amp; Catching Pokemon-attribute-jpg  

  13. #2171
    Aubrionnax's Avatar Member
    Reputation
    2
    Join Date
    May 2015
    Posts
    67
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks for the new release. Which TransferType do you all prefer?: leaveStrongest, all, duplicate, cp
    Last edited by Aubrionnax; 07-21-2016 at 09:14 AM.

  14. #2172
    dhaiku's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    3
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just switched to new release is using great balls when run out of pokeballs
    have no pokeballss atm cause inventory is full

  15. #2173
    Aubrionnax's Avatar Member
    Reputation
    2
    Join Date
    May 2015
    Posts
    67
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a question about the new release and hope anyone knows the answer.


    Is there a option to only keep pokeballs and delete potions/revives? I will be maxed out on items if it keeps everything and then what ? If I log in manually to delete everything I get back to my own location and get soft banned i think.

    Thanks!

    edit: same goes for the ''StrongestOnly'' transfertype option. It seems to transfer all of the shitty pokemons but it keeps all of the pinsirs
    Last edited by Aubrionnax; 07-21-2016 at 10:12 AM.

  16. #2174
    qweeboi's Avatar Member
    Reputation
    14
    Join Date
    Apr 2009
    Posts
    135
    Thanks G/R
    6/13
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  17. Thanks Alex_Yustas, Aubrionnax (2 members gave Thanks to qweeboi for this useful post)
  18. #2175
    robertoMF's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    23
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i need login to delet items from inventory for dont get bag full?

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:06 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