C# Bot for Farming Pokestops & Catching Pokemon menu

User Tag List

Page 137 of 151 FirstFirst ... 3787133134135136137138139140141 ... LastLast
Results 2,041 to 2,055 of 2253
  1. #2041
    mrgyros's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    8
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    help

    Originally Posted by sephiroth_trandangkhoa View Post
    If it show Successfully receive token. It mean OK. I just added code to enter code to google site, don't touch anything else.
    plz help me. new chrome dont get history i setup old chrome. it request login account

    C# Bot for Farming Pokestops & Catching Pokemon
  2. #2042
    enhancer's Avatar Member
    Reputation
    4
    Join Date
    Oct 2011
    Posts
    30
    Thanks G/R
    7/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ev0lbyte View Post
    I have been running this bot all night and works great.

    Suddenly I get "got away" all the time (i have enough poke balls) but pokestops work ....
    Any idea ?? I didn't change any code but can't catch pokemon suddenly

    Are you not full of pokemon 250/250 ?

  3. #2043
    kawette's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone having issue with the 5.0 version ? The google 4.2 works fine but by doing the same steps for 5.0 it doesn't run.

  4. #2044
    bimaradhpoke's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    79
    Thanks G/R
    11/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its just me or the bot suddenly error even tho im ddoing fine on nox(server is up) and not banned

  5. #2045
    7ken's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    2
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by andrerdxd View Post
    how do i add this code to the v5.0 repo?
    It's working. Screen -



    @edit2 - working, just add&replace these 2 functions in Client.cs

    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);
    
                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;
    
                if (ultraBallsCount > 0)
                {
                    Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}]" + "Ultra ball has been chosen. " + ultraBallsCount + "balls left.");
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
                }
    
                if (greatBallsCount > 0)
                {
                    Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}]" + "Great ball has been chosen. " + greatBallsCount + "balls left.");
                    return MiscEnums.Item.ITEM_GREAT_BALL;
                }
    
                Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}]" + "Poke ball has been chosen. " + pokeBallsCount + "balls left.");
                return MiscEnums.Item.ITEM_POKE_BALL;
    
    
            }
    
            public async Task<CatchPokemonResponse> CatchPokemon(ulong encounterId, string spawnPointGuid, double pokemonLat,
                double pokemonLng)
            {
    
                MiscEnums.Item bestPokeBall = await GetBestBall();
                var customRequest = new Request.Types.CatchPokemonRequest()
                {
                    EncounterId = encounterId,
                    Pokeball = (int)bestPokeBall,
                    SpawnPointGuid = spawnPointGuid,
                    HitPokemon = 1,
                    NormalizedReticleSize = Utils.FloatAsUlong(1.950),
                    SpinModifier = Utils.FloatAsUlong(1),
                    NormalizedHitPosition = Utils.FloatAsUlong(1)
                };
    
                var catchPokemonRequest = RequestBuilder.GetRequest(_unknownAuth, _currentLat, _currentLng, 30,
                    new Request.Types.Requests()
                    {
                        Type = (int)RequestType.CATCH_POKEMON,
                        Message = customRequest.ToByteString()
                    });
                return
                    await
                        _httpClient.PostProto<Request, CatchPokemonResponse>($"https://{_apiUrl}/rpc", catchPokemonRequest);
            }
    Last edited by 7ken; 07-21-2016 at 04:44 AM.

  6. Thanks imfap247 (1 members gave Thanks to 7ken for this useful post)
  7. #2046
    kakel's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi! Using CatcherStopperTransfer-AutoLoginChrome.zip and sometimes there is such error:
    [0721/121757:ERROR:ipc_channel_win.cc(217)] pipe error: 109
    Then it stops and nothing is going then. Any ideas about how can i fix that?

  8. #2047
    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)
    Originally Posted by 7ken View Post
    I've deleted master balls switch functionality coz i want to save them but anyway you can add this to the code this way (Client.cs below EncounterPokemon function):
    What level you get master balls?

  9. #2048
    mobus1's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sephiroth_trandangkhoa View Post
    I shared that before.

    Download : https://drive.google.com/open?id=0By...FFfLVIwcTBtb1k

    Go to Settings.cs do as the first post and paste the exactly path of chromedriver.exe on Selenium folder
    I downloaded your work and i changed the path to my selerium location but when i start it tells me can't find in c:/users/seraph etc and when i create the same path manually it finds it but it does your email and your password , i can't find anything to change this :\

  10. #2049
    kawette's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    V 5.0 error :

    missing \bin\debug\pokemon GO Rocket API.dll

  11. #2050
    Ev0lbyte's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anybody have any idea at what lvl i will stop getting normal pokeballs ?

  12. #2051
    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)
    Originally Posted by darkretnuh View Post
    Just low CP duplicates. Keeps high CP's.
    Whats the CP limit to keep? or where in the code is it determined what to keep.

  13. #2052
    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)
    Originally Posted by 7ken View Post
    It's working. Screen -



    @edit2 - working, just add&replace these 2 functions in Client.cs

    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);
    
                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;
    
                if (ultraBallsCount > 0)
                {
                    Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}]" + "Ultra ball has been chosen. " + ultraBallsCount + "balls left.");
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
                }
    
                if (greatBallsCount > 0)
                {
                    Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}]" + "Great ball has been chosen. " + greatBallsCount + "balls left.");
                    return MiscEnums.Item.ITEM_GREAT_BALL;
                }
    
                Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}]" + "Poke ball has been chosen. " + pokeBallsCount + "balls left.");
                return MiscEnums.Item.ITEM_POKE_BALL;
    
    
            }
    
            public async Task<CatchPokemonResponse> CatchPokemon(ulong encounterId, string spawnPointGuid, double pokemonLat,
                double pokemonLng)
            {
    
                MiscEnums.Item bestPokeBall = await GetBestBall();
                var customRequest = new Request.Types.CatchPokemonRequest()
                {
                    EncounterId = encounterId,
                    Pokeball = (int)bestPokeBall,
                    SpawnPointGuid = spawnPointGuid,
                    HitPokemon = 1,
                    NormalizedReticleSize = Utils.FloatAsUlong(1.950),
                    SpinModifier = Utils.FloatAsUlong(1),
                    NormalizedHitPosition = Utils.FloatAsUlong(1)
                };
    
                var catchPokemonRequest = RequestBuilder.GetRequest(_unknownAuth, _currentLat, _currentLng, 30,
                    new Request.Types.Requests()
                    {
                        Type = (int)RequestType.CATCH_POKEMON,
                        Message = customRequest.ToByteString()
                    });
                return
                    await
                        _httpClient.PostProto<Request, CatchPokemonResponse>($"https://{_apiUrl}/rpc", catchPokemonRequest);
            }
    from where to wehere? in mine there is some in a differnet order? what all are we replacing??

  14. #2053
    sephiroth_trandangkhoa's Avatar Corporal
    Reputation
    18
    Join Date
    Jul 2016
    Posts
    22
    Thanks G/R
    0/16
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mrgyros View Post
    plz help me. new chrome dont get history i setup old chrome. it request login account
    my code wrote for new chrome, and it auto login, you don't need to type anything esle ??

    it use chromedrive.exe and if you input gmail/password into Setting.cs. It should automatically

  15. Thanks mrgyros, tt812 (2 members gave Thanks to sephiroth_trandangkhoa for this useful post)
  16. #2054
    Newborn92's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    59
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Update:. using the transfer version.. made new ptc account yesterday and is already level nearly level 21 lol.. would of been higher if the servers where not down for like 3-4 hours lol.

  17. #2055
    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)
    Got it,


    Has anyone lowered the catching pokemon delay and the pokestop jump if so by how much? results? thoughts?

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 07:18 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