C# Bot for Farming Pokestops & Catching Pokemon menu

User Tag List

Page 34 of 151 FirstFirst ... 30313233343536373884134 ... LastLast
Results 496 to 510 of 2253
  1. #496
    KefkaBot's Avatar Contributor CoreCoins Purchaser
    Reputation
    103
    Join Date
    Sep 2013
    Posts
    663
    Thanks G/R
    51/80
    Trade Feedback
    38 (95%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Neer View Post
    Using PTC i've been farming constantly for 1 hour now. (PTC ONLY)
    Try this:
    [C#] Replace static void Main(string[] args) { Task.Run(() => - Pastebin.com
    Out of curiosity Neer, where are you farming?

    C# Bot for Farming Pokestops & Catching Pokemon
  2. #497
    SordidX's Avatar Member
    Reputation
    9
    Join Date
    Aug 2012
    Posts
    12
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Meh Im dumb.
    Last edited by SordidX; 07-20-2016 at 12:47 AM.

  3. #498
    Ainess's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    24
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    regardless of whatever i add i can only last 5-7 minutes before it doesnt farm anything and i have to restart it (google)

  4. #499
    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)
    Originally Posted by SordidX View Post
    Yeah guys, dont switch to v2 google. I set up location perfectly and now am softbanned also.
    v2 works perfectly fine for me.

    No ban.
    The bot does however stop after 5-10 minutes (Google)

  5. #500
    l33thaxor'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)
    Guys, protips on fixing some problems many of you are experiencing

    Not catching pokemon? It's because you're using pokeballs. Change it here: https://i.imgur.com/rz3HRqg.png

    Set it to greatballs or whatever you have.

    Constantly running into magnemite/voltorb? It's because the bozos who wrote this set the altitude to 30 for some reason, which is where apparently all these magikarp and voltorbs live. Currently experimenting with values, 0 seems to get more accurate pokemon in the area.

  6. #501
    cedricdu94's Avatar Member
    Reputation
    11
    Join Date
    May 2009
    Posts
    175
    Thanks G/R
    9/10
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Neer View Post
    Yes it is

    Try my crash fix that i posted earlier
    Thanks I try your fix I go to sleep, work with google login ? dont need re write code ?

  7. #502
    FrenchieNinja's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    9/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Before using this i'd like to know if i'll get soft banned for using Google Login V2?

  8. #503
    Arashi87's Avatar Sergeant
    Reputation
    6
    Join Date
    Jan 2014
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does v1 and v2 throw great pokeballs at all?

  9. #504
    winterfall500's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    62
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    edit

    Originally Posted by l33thaxor View Post
    Guys, protips on fixing some problems many of you are experiencing

    Not catching pokemon? It's because you're using pokeballs. Change it here: https://i.imgur.com/rz3HRqg.png

    Set it to greatballs or whatever you have.

    Constantly running into magnemite/voltorb? It's because the bozos who wrote this set the altitude to 30 for some reason, which is where apparently all these magikarp and voltorbs live. Currently experimenting with values, 0 seems to get more accurate pokemon in the area.
    what file did you edit that?

    *edit*
    just find the code and you can see it
    Last edited by winterfall500; 07-20-2016 at 12:53 AM. Reason: fixed

  10. #505
    Spegeli86's Avatar Contributor
    Reputation
    91
    Join Date
    Jul 2016
    Posts
    54
    Thanks G/R
    0/71
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For better Output:

    RetryHandler.cs
    Code:
    System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] [#{i} of {MaxRetries}] retry request {request.RequestUri} - Error: {ex}");
    Program.cs (in ExecuteFarmingPokestopsAndPokemons):
    Code:
    System.Console.WriteLine($"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {bag.XpAwarded}, Gems: { bag.GemsAwarded}, Eggs: {bag.EggPokemon}, Items: {GetFriendlyItemsString(bag.Items)}");
    Programm.cs (in ExecuteCatchAllNearbyPokemons):
    Code:
    System.Console.WriteLine(caughtPokemonResponse.Payload[0].Status == 1 ? $"[{DateTime.Now.ToString("HH:mm:ss")}] We caught a {GetFriendlyPokemonName(pokemon.PokedexTypeId)}" : $"[{DateTime.Now.ToString("HH:mm:ss")}] {GetFriendlyPokemonName(pokemon.PokedexTypeId)} got away..");
    Program.cs (GetFriendlyItemsString):
    Code:
            private static string GetFriendlyItemsString(IEnumerable<FortSearchResponse.Types.Item> items)
            {
                var sb = new StringBuilder();
                foreach (var item in items)
                    sb.Append($"{item.ItemCount} x {(MiscEnums.Item)item.Item_}, ");
                if (sb.ToString() == "")
                    sb.Append("0");
    
                return sb.ToString();
            }
    How it looks after the changes:
    Last edited by Spegeli86; 07-20-2016 at 12:54 AM.

  11. #506
    JetF0x's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by winterfall500 View Post
    what file did you edit that?
    Client.cs

    is where you edit it

  12. #507
    Arashi87's Avatar Sergeant
    Reputation
    6
    Join Date
    Jan 2014
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by l33thaxor View Post
    Guys, protips on fixing some problems many of you are experiencing

    Not catching pokemon? It's because you're using pokeballs. Change it here: https://i.imgur.com/rz3HRqg.png

    Set it to greatballs or whatever you have.

    Constantly running into magnemite/voltorb? It's because the bozos who wrote this set the altitude to 30 for some reason, which is where apparently all these magikarp and voltorbs live. Currently experimenting with values, 0 seems to get more accurate pokemon in the area.
    but this will stop using the other two type pokeballs? how do we use all our pokeballs in order?

  13. #508
    wetshrimp's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    61
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    instant softban, coordinates are the same as before so its not teleporting far at all.

  14. #509
    l33thaxor'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)
    Originally Posted by Arashi87 View Post
    but this will stop using the other two type pokeballs? how do we use all our pokeballs in order?
    It is currently not using anything but pokeballs. I can write it up so it does, but can't contribute it to the project. If you want, just have it check how many of each type there are in the bag before throwing them

  15. #510
    TheAccountant's Avatar Member
    Reputation
    1
    Join Date
    Nov 2014
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by KefkaBot View Post
    It won't be a long soft ban, it seems to depend on how far the jump is.
    Thanks for this, I just set it to 300 seconds, the pokestop timer refresh.

    Also, would anyone happen to know how long I would have to log out for to switch coordinates from Minneapolis to Sydney while avoiding a softban? i.e. roughly 2-3 hours?

    I think Sydney has a more diverse array of pokemon to catch, so this bot would work perfect there, I don't really need this 6 stop Minneapolis anymore.

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