C# Bot for Farming Pokestops & Catching Pokemon menu

Shout-Out

User Tag List

Page 104 of 151 FirstFirst ... 454100101102103104105106107108 ... LastLast
Results 1,546 to 1,560 of 2253
  1. #1546
    JwillC's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    23
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Servers are down yessir. This is incredible btw. I wish I knew how it worked. Would it theoretically be possible to play PoGo in text based form using the terminal? Similar to a roguelike, code it with ascii graphics to show what the bot/player is seeing. That would be killer.

    C# Bot for Farming Pokestops & Catching Pokemon
  2. #1547
    Shanks Tribal's Avatar Member
    Reputation
    1
    Join Date
    Mar 2014
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I need to know the best modded bot actually :P

  3. #1548
    Ehnoah's Avatar Elite User
    Reputation
    398
    Join Date
    Sep 2006
    Posts
    1,028
    Thanks G/R
    16/96
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Can you throw a Full List please?

    PokemonId.Pidgey, PokemonId.Rattata,
    PokemonId.Weedle,
    PokemonId.Zubat,
    PokemonId.Caterpie,
    PokemonId.Pidgeotto,
    PokemonId.NidoranFemale,
    PokemonId.Paras,
    PokemonId.Venonat,
    PokemonId.Psyduck,
    PokemonId.Poliwag,
    PokemonId.Slowpoke,
    PokemonId.Drowzee,
    PokemonId.Gastly,
    PokemonId.Goldeen,
    PokemonId.Staryu,
    PokemonId.Magikarp,
    PokemonId.Eevee,
    PokemonId.Dratini

  4. #1549
    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)
    Vouching for necromicons bot, clean code well done.

  5. Thanks nonm (1 members gave Thanks to dv999 for this useful post)
  6. #1550
    Minkafighter's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    8/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where to put it?

  7. #1551
    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 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;
            }

    where is this put? is this working in both versions or the Main one int eh original post?/

  8. #1552
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1852
    Join Date
    Jul 2012
    Posts
    2,735
    Thanks G/R
    313/379
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by Marlb0ro View Post
    edit App.config like that:
    <add key="AuthType" value="Ptc"/>
    <add key="PtcUsername" value="username"/>
    <add key="PtcPassword" value="password"/>
    <add key="GoogleRefreshToken" value=""/>
    <add key="DefaultLatitude" value="-33.859498"/><!--Default Amsterdam Central Station-->
    <add key="DefaultLongitude" value="151.212844"/><!--Default Amsterdam Central Station-->
    ahhh i was using PTC, it's case sensitive!
    Need a guild in the US? Visit murlocs.com

  9. #1553
    Butters36's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does V5 Beta support evolving? I want to use double xp egg and start the transfer and evolving bot.

  10. #1554
    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 Sendro View Post
    Quick assume :
    SERVERS ARE HEAVILY OVERLOADED AT THIS MOMENT SO BOT IS WORKING REALLY SLOW

    IF U WANT TO CHANGE AUTH-TYPE to PTC from Google you need to type "Ptc" as value and GoogleRefreshToken value=0
    I get compiling errors, and I don't know what I did? O.o

    EDIT - NEVERMIND I GOT IT

  11. #1555
    chancity's Avatar Legendary
    CoreCoins Purchaser
    Reputation
    686
    Join Date
    Jun 2012
    Posts
    1,153
    Thanks G/R
    27/341
    Trade Feedback
    11 (55%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ptmazkirut View Post
    where to put it?
    client.cs in pokemongo.rocketapi

    Also in CatchPokemon change pokeball to

    Pokeball = (int) GetBestBall().Result,

    I haven't tested yet.

  12. #1556
    jr045'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)
    Can somebody tell me this is because of the server problems:
    https://gyazo.com/3ff98bff40450642ae2967a64fff1002

  13. #1557
    MadDoggA's Avatar Member
    Reputation
    1
    Join Date
    Apr 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lil confused about where to put my lat & long here anyone help
    double DefaultLatitude { get; }
    double DefaultLongitude { get; }


    Edit never mind

  14. #1558
    Constl's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    4
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Would also like to know how to disable autoevolve in Necro's version Thank you in advance

  15. #1559
    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 chancity View Post
    client.cs in pokemongo.rocketapi

    Also in CatchPokemon change pokeball to

    Pokeball = (int) GetBestBall().Result,

    I haven't tested yet.
    Do we replace anything or just add it altogether?

  16. #1560
    valderino's Avatar Corporal
    Reputation
    7
    Join Date
    Jul 2012
    Posts
    20
    Thanks G/R
    7/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    edit: nevermind
    Last edited by valderino; 07-20-2016 at 03:29 PM.

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 09:40 AM. 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