C# Bot for Farming Pokestops & Catching Pokemon menu

Shout-Out

User Tag List

Page 19 of 151 FirstFirst ... 15161718192021222369119 ... LastLast
Results 271 to 285 of 2253
  1. #271
    Grabbed's Avatar Member
    Authenticator enabled
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    19
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Neer View Post
    It doesn't have a empty function yet but what I do is i made a macro in nox that transfers all pokemon.
    Its up to you how you wanna solve it
    My Nox doesn't let me scroll down to get to the transfer pokemon button! Have you experienced this?

    C# Bot for Farming Pokestops & Catching Pokemon
  2. #272
    pinn90's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    87
    Thanks G/R
    6/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Changed both delays to 3000 and compiled again.
    But I didn't notice any improve exp rate is normal/slow.

    And there is plenty pokestops in my arena:


    Also bot just stop farming every 5mins~ not matter what delays.

  3. #273
    rubenhkoster's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pinn90 View Post
    Changed both delays to 3000 and compiled again.
    But I didn't notice any improve exp rate is normal/slow.

    And there is plenty pokestops in my arena:


    Also bot just stop farming every 5mins~ not matter what delays.
    clap clap, show the world your username but got same issue

  4. #274
    pinn90's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    87
    Thanks G/R
    6/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rubenhkoster View Post
    clap clap, show the world your username but got same issue
    Lol, obviously this is not my account. I just got screen from the guy who posted this place on forum.

  5. #275
    lyan123's Avatar Active Member
    Reputation
    50
    Join Date
    Sep 2014
    Posts
    70
    Thanks G/R
    5/41
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    C# Bot for Farming Pokestops & Catching Pokemon-soj3kyn-png

    Works! Awesome!

  6. Thanks GreeYz (1 members gave Thanks to lyan123 for this useful post)
  7. #276
    SylverrFoxx's Avatar Member
    Reputation
    3
    Join Date
    Jun 2016
    Posts
    22
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Followed the directions for PTC and works flawlessly out of the box. Thanks! Only one question, where are the delays located? I'd like to speed it up a little. And any recommended settings?

  8. #277
    pinn90's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    87
    Thanks G/R
    6/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SylverrFoxx View Post
    Followed the directions for PTC and works flawlessly out of the box. Thanks! Only one question, where are the delays located? I'd like to speed it up a little. And any recommended settings?
    Delays are in program.cs (Pokemon-Go-Rocket-API-master\PokemonGo\RocketAPI\Console)
    So your bot is running for more then 5min and didn't stop on PTC account?

  9. #278
    SylverrFoxx's Avatar Member
    Reputation
    3
    Join Date
    Jun 2016
    Posts
    22
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks. And so far, yes. It hasn't stopped yet.

  10. #279
    StrixAce's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello! Sorry to bother you guys, but I can't seem to get the bot to actually catch pokemon. I have replaced the program file with the one mentioned in first post but it's still just farming pokestops Screenshot by Lightshot . I have also tried to replace the catch pokemon part with the one from the PTC file as mentioned in a previous post but it didn't work. Could someone send me their program if it's working or at least some advice on what I should do please?

  11. #280
    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)
    Yeah my CMD just grinds to a halt after about 5-10 minutes. Not sure why yet...

  12. #281
    lyan123's Avatar Active Member
    Reputation
    50
    Join Date
    Sep 2014
    Posts
    70
    Thanks G/R
    5/41
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It catches pokemons but rarely only...

  13. #282
    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)
    You can use Google Accounts with the PTC Version too.

    in the program.cs simply replace:
    Code:
                if (Settings.UsePTC)
                {
                    await client.LoginPtc(Settings.PtcUsername, Settings.PtcPassword);
                }
                else
                {
                    await client.LoginGoogle(Settings.DeviceId, Settings.Email, Settings.LongDurationToken);
                }
    with:
    Code:
                if (Settings.UsePTC)
                {
                    await client.LoginPtc(Settings.PtcUsername, Settings.PtcPassword);
                }
                else
                {
                    await client.LoginGoogle();
                }
    and then you can switch via the settings.cs between PTC & Google Account ^^

    The function for Use Google Accounts is the same as in the Google Only Version and is already implant in the PTC Version.
    It only seems that the Developer forgot to change this in the program.cs ^^
    Last edited by Spegeli86; 07-19-2016 at 09:05 PM.

  14. Thanks valderino, StrixAce (2 members gave Thanks to Spegeli86 for this useful post)
  15. #283
    ohhungry's Avatar Member
    Reputation
    2
    Join Date
    May 2014
    Posts
    45
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Neer View Post
    You could add a manual input to the bot. So you have to enter login details, that way you can run multiple clients.
    Could you elaborate on how to do this please?
    Last edited by ohhungry; 07-19-2016 at 09:02 PM.

  16. #284
    Soldieron's Avatar Private
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys im quite new to all this sorry if i seem like a real nub, i have followed the instructions to what i believe is correct, but my screen just stops on this screen after it receives my device code from google. C# Bot for Farming Pokestops & Catching Pokemon-stuck-jpg

  17. #285
    seagula's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seems to just kind of stop after 6 lines or so :/
    Farmed XP: 50, Gems: 0, Eggs: 0 Items: 1 x ITEM_POKE_BALL, 1 x ITEM_POKE_BALL, 1 x ITEM_POKE_BALL,
    Farmed XP: 0, Gems: 0, Eggs: 0 Items:
    Krabby got away..
    Farmed XP: 0, Gems: 0, Eggs: 0 Items:
    Farmed XP: 0, Gems: 0, Eggs: 0 Items:
    Farmed XP: 0, Gems: 0, Eggs: 0 Items:


    - PTC version

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 01:12 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