C# Bot for Farming Pokestops & Catching Pokemon menu

User Tag List

Page 125 of 151 FirstFirst ... 2575121122123124125126127128129 ... LastLast
Results 1,861 to 1,875 of 2253
  1. #1861
    Deadspacezx's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    13
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Raidmaxxx View Post
    Server Fetched
    Profile Fetched
    Settings Fetched
    Objects Fetched
    Inventory Fetched
    Starting up! Don't forget to thank the people who contributed to this project. Pokebot V5.0
    ||Farm Started||
    [21:00:14] Farmed XP: 0, Gems: 0, Eggs: 0 Items:
    [21:00:14] Doduo got away..
    [21:00:30] Farmed XP: 0, Gems: 0, Eggs: 0 Items:
    [21:00:30] Psyduck got away..
    [21:00:46] Farmed XP: 0, Gems: 0, Eggs: 0 Items:
    [21:00:56] Farmed XP: 0, Gems: 0, Eggs: 0 Items:
    [21:01:07] Farmed XP: 0, Gems: 0, Eggs: 0 Items:
    [21:01:07] Psyduck got away..
    [21:01:12] Psyduck got away..
    [21:01:27] Ponyta got away..
    [21:01:33] Doduo got away..
    [21:01:39] Goldeen got away..

    Any reason why its not picking up items/catching anything anymore? Worked fine for about 15 minutes
    I have had that happen to me as well, i may be wrong but that maybe due to the server issues PoGo is having at the moment.We wouldnt be reciving exp if we were banned right?

    C# Bot for Farming Pokestops & Catching Pokemon
  2. Thanks Raidmaxxx (1 members gave Thanks to Deadspacezx for this useful post)
  3. #1862
    andrerdxd's Avatar Sergeant
    Reputation
    9
    Join Date
    Jul 2016
    Posts
    61
    Thanks G/R
    33/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chancity View Post
    CODE TO USE OTHER POKEBALLS.


    Code:
            private async Task<MiscEnums.Item> GetBestBall()
            {
                var inventory = await GetInventory();
    
                var ballCollection = inventory.Payload[0].Bag.Items.Select(i => i.Item.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 pokeBallsCount = ballCollection.Where(p => p.ItemId == MiscEnums.Item.ITEM_POKE_BALL).
                    DefaultIfEmpty(new { ItemId = MiscEnums.Item.ITEM_POKE_BALL, Amount = 0 }).FirstOrDefault().Amount;
                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)
                    return MiscEnums.Item.ITEM_MASTER_BALL;
    
                if (ultraBallsCount > 0)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
    
                if (greatBallsCount > 0)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
    
                return MiscEnums.Item.ITEM_POKE_BALL;
            }
    how do i add this code to the v5.0 repo?

  4. Thanks robleet (1 members gave Thanks to andrerdxd for this useful post)
  5. #1863
    bengeminuy's Avatar Member
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    40
    Thanks G/R
    8/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gorlhax View Post
    Attachment 27672

    I have made quite a lot of changes to the 5.0 version, and I ended up with a fully functional bot which doesn't require babysit. I'll perhaps make a merge with the creator in a while, we will see

    PS. recycling process is on separate thread, and is insanely fast and efficient.
    Originally Posted by MonsterMMORPG View Post
    pretty much modified the code

    now it should work till tomorrow

    lets see my level tomorrow today i am level 21

    gonna sleep now
    Can you good sirs please share if possible?

  6. #1864
    Autolight's Avatar Member
    Reputation
    1
    Join Date
    May 2014
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi guys i've been using this program for a couple hours now and its been working up until the last hour or so, I have checked and I am not softbanned, it seems the program is going to pokestops and gaining xp but not getting any pokeballs or items from them anymore. https://i.imgur.com/sCpTGBd.png anyone got any idea how to get the program to start collecting items again, my inventory isn't full either.

  7. #1865
    swarnes's Avatar Sergeant
    Reputation
    32
    Join Date
    Jul 2016
    Posts
    41
    Thanks G/R
    3/16
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bengeminuy View Post
    Can you good sirs please share if possible?
    Isit possible to use best ball and use least after

  8. #1866
    Derekja's Avatar Member
    Reputation
    1
    Join Date
    May 2015
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone else getting an unexpected stop with their program?

  9. #1867
    navyguy's Avatar Active Member
    Reputation
    27
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    5/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Screenshot by Lightshot

    So it seems even if a good one get's away it can be caught again. in real play I have never seen one that ran away pop up again anyone else? thats cool

  10. #1868
    navyguy's Avatar Active Member
    Reputation
    27
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    5/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there anyway to automatically use an incense or lucky eggs?? with the nero one?

  11. #1869
    elmontroski's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    23
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im getting xp but everyone pokemon is ruynning away why? i know im not soft banned because im getting xp from poke stops

  12. #1870
    SOLOHAN's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Derekja View Post
    Anyone else getting an unexpected stop with their program?

    yes constantly and nobody seems to know what the problem is or acknowledge it for that matter

  13. #1871
    shadepool7's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by elmontroski View Post
    im getting xp but everyone pokemon is ruynning away why? i know im not soft banned because im getting xp from poke stops
    The most common reasons are either you're out of poke balls, or you're full of pokemon.

    Beyond that I don't know.

  14. Thanks DommyDomuk (1 members gave Thanks to shadepool7 for this useful post)
  15. #1872
    shadepool7's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm using the 4.1 version and it seems stable (google login)

    I'd be interested to try the new version with automatic transfers, but the main page isn't clear as to the downloads.

    Is it just the one download for both login types now?

  16. #1873
    kiihk1's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    59
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gorlhax View Post
    Attachment 27672

    i have made quite a lot of changes to the 5.0 version, and i ended up with a fully functional bot which doesn't require babysit. I'll perhaps make a merge with the creator in a while, we will see

    ps. Recycling process is on separate thread, and is insanely fast and efficient.
    wow, good,

  17. #1874
    n00bmasta's Avatar Master Sergeant
    Reputation
    20
    Join Date
    Jul 2012
    Posts
    96
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Trying out the GUI with a new PTC account - seems to keep looping with login?
    Login details are correct and GPS is updated

    C# Bot for Farming Pokestops &amp; Catching Pokemon-loop-png

  18. #1875
    AnNyeong's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    48
    Thanks G/R
    2/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CaptainTito View Post
    Coded by Ferox - edited by NecronomiconCoding
    Awesome! You have already got the newest version!
    Check for duplicates
    Transfer Rattata with 19 CP (highest has 37)
    [21:23:03] Farmed XP: 50, Gems: 0, Eggs: Items: 4 x ItemPokeBall
    [21:23:52] We caught a Pidgey with CP 42
    [21:24:02] We caught a Weedle with CP 10
    [21:24:13] Farmed XP: 0, Gems: 0, Eggs: Items:
    [21:24:29] We caught a Caterpie with CP 25
    [21:24:39] Farmed XP: 50, Gems: 0, Eggs: Items: 3 x ItemPokeBall
    [21:24:55] Farmed XP: 0, Gems: 0, Eggs: Items:
    [21:25:11] We caught a Weedle with CP 15
    [21:25:22] We caught a Weedle with CP 16
    [21:25:32] Farmed XP: 50, Gems: 0, Eggs: Items: 4 x ItemPokeBall
    [21:25:48] Farmed XP: 50, Gems: 0, Eggs: Items: 3 x ItemPokeBall
    [21:26:03] Farmed XP: 50, Gems: 0, Eggs: Items: 4 x ItemPokeBall
    [21:26:19] Farmed XP: 0, Gems: 0, Eggs: Items:
    [21:26:35] Rattata with CP 23 got away..
    [21:26:46] Weedle with CP 36 got away..
    [21:26:56] We caught a Eevee with CP 74
    [21:27:07] Farmed XP: 0, Gems: 0, Eggs: Items:
    [21:27:23] We caught a Eevee with CP 104

    I have found that if I restart I always end up with a decent start but upon wandering im guessing it isnt finding anything, is there any way to keep its wander radius rather close to its initial starting point?
    no matter how far it wonders, it shouldn't find ''nothing'' in 5~ mins. I mean the shit is teleporting like crazy, unless its a 100km radius it shoud always find something. I'm guessing that is not the problem

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 05:24 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