C# Bot for Farming Pokestops & Catching Pokemon menu

Shout-Out

User Tag List

Page 134 of 151 FirstFirst ... 3484130131132133134135136137138 ... LastLast
Results 1,996 to 2,010 of 2253
  1. #1996
    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)
    Originally Posted by ednet View Post
    Yes that was it, thank you, strange, i got them from GoogleMaps , they were my house coordinates O_o. Works now, set the central park ones



    The problem is they all get away.....doesnt catch atleast 1....
    If everyone got away and you dont get exp, you are soft-banned. Wait for 1 hour or so and try again

    C# Bot for Farming Pokestops & Catching Pokemon
  2. #1997
    anelrush's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by int_main View Post
    Simple autohotkey clicker that enter google device code
    Code:
    oldCode := ""
    
    Loop
    {
        Loop, read, C:\ahk\DeviceCode.txt
            newCode := A_LoopReadLine
        
        if (oldCode <> newCode)
        {
            BlockInput On
            
            Run Chrome, , max
            
            Sleep, 4000
            Run http://www.google.com/device
            
            Sleep, 3000
            MouseClick, left, 900, 230
            
            Sleep, 1500
            MouseClick, left, 870, 380
            
            Sleep, 1000
            SendInput, %newCode%{Enter}
            
            Sleep, 5000
            MouseClick, left, 1140, 470
    
            oldCode := newCode
            
            BlockInput Off
        }
        
        Sleep, 1000
    }
    To make it work you shoud add this code in Client.cs after line 132:

    Code:
    132 | Console.WriteLine("Please visit " + token.SelectToken("verification_url") + " and enter " + token.SelectToken("user_code"));
    133 | System.IO.StreamWriter sw = new System.IO.StreamWriter("C:\\ahk\\DeviceCode.txt");
    134 | sw.Write(token.SelectToken("user_code"));
    135 | sw.Close();
    Also you shoud change paths and coordinates according your resolution, and maybe browser.
    where should i put the autoclick codes?

  3. #1998
    zenenet's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Minkafighter View Post
    If everyone got away and you dont get exp, you are soft-banned. Wait for 1 hour or so and try again
    Some times it caught pokemon but most of all got away..

  4. #1999
    lkjfds1's Avatar Master Sergeant
    Reputation
    9
    Join Date
    Jun 2012
    Posts
    133
    Thanks G/R
    35/8
    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

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



    is this look normal to you? but bot still works.

  5. #2000
    heybigboy5's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone else's bot stop after 5 minutes?

  6. #2001
    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 johnsilvabr View Post
    sephiroth, now this error pops up:

    An exception of type 'System.InvalidOperationException' occurred in mscorlib.dll but was not handled in user code

    Additional information: unknown error: unrecognized Blink revision: aa7c8d23c098e96a388ffedf6698230bda650bb3

    (Driver info: chromedriver=2.10.267521,platform=Windows NT 6.3 x86_64)
    take a photo and see how can i help you. i never see it before.

  7. #2002
    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 lkjfds1 View Post
    C# Bot for Farming Pokestops &amp; Catching Pokemon-11-png



    is this look normal to you? but bot still works.
    If it show Successfully receive token. It mean OK. I just added code to enter code to google site, don't touch anything else.

  8. Thanks lkjfds1 (1 members gave Thanks to sephiroth_trandangkhoa for this useful post)
  9. #2003
    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)
    Is it possible to be soft banned (0exp-mob away) but you i still can connect on the Nox app ?

  10. #2004
    mtko's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, so i've been playing with the code a bit. I wanted to change it to write the CP/etc to console when it catches a pokemon, but I'm not having any luck.

    The pokemon object in the ExecuteCatchAllNearbyPokemons method only has the status of the catch, the pokemon class id (IE id 1 = Bulbasaur, etc), the ecounterID, and the lat/long coordinates. If I get my pokemon inventory, I can loop through them all and see their CP, unique id, etc etc. I've been trying to figure out a way to combine that info, but I'm coming up blank.

    I know the game itself can see the pokemon stats in battle, since you can see its CP over its head, but there most be some call missing in the bot client that skips getting that information. Anyone have any ideas?

  11. #2005
    ClubberLlang's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    30
    Thanks G/R
    2/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Edit

    Hi everyone, first of all id like to thank the modders for creating this, this is absolutly supurb, good job.
    can anyone tell me what ive done wrong, im not good with this stuff at all and this is what keeps happending.
    cheersC# Bot for Farming Pokestops &amp; Catching Pokemon-screenshot-1-jpg


    EDIT: as you can see all the pokemon got away and ive farmed nothing.

  12. #2006
    zenenet's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    guys is there a solution about cathing pokemon (got away) ?

  13. #2007
    AHMED6'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)
    Guys i would like to know the fix to the API error retry request blah blah blah can anyone tell me how to fix it ?

  14. #2008
    k199's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    50
    Thanks G/R
    30/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Neer , any update coming soon ?

    how i make it use yellow ball ?

  15. #2009
    prolike's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    35
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    u are soft banned

  16. #2010
    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)
    WARNING : Maybe it's because of the new version !

    Waiting for other people to confirm

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