[UPDATED] Pokemon Bot in C# Community Version menu

Shout-Out

User Tag List

Page 87 of 229 FirstFirst ... 37838485868788899091137187 ... LastLast
Results 1,291 to 1,305 of 3427
  1. #1291
    Snuppert's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jul 2016
    Posts
    75
    Thanks G/R
    5/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just see my bots starting up again. Indeed not down but unstable. Japan, get out! :-)

    [UPDATED] Pokemon Bot in C# Community Version
  2. #1292
    chocokt's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    during downtime, anyone have an idea on how far is the radius where your bot will stray off to before reseting to ur starting spot?

  3. #1293
    zoozuu'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)
    Thx for this soft!

    p.s. after softban my nick name changed =) They adding to my nickname "Bot" =))))

  4. #1294
    Snuppert's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jul 2016
    Posts
    75
    Thanks G/R
    5/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zoozuu View Post
    Thx for this soft!

    p.s. after softban my nick name changed =) They adding to my nickname "Bot" =))))
    Really?! Picture or it didnt happen!
    Pokemon busy to do stuff? =)

  5. #1295
    Andrex430's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do you set when to use pokeball and when to use great/ultra ball?

    at what CP do you recommend to use each?

  6. #1296
    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)
    Is there new type of autoauth token?
    IN OP it says:
    AUTHTOKEN ALWAYS STARTS WITH 1/
    My previous tokens also started with 1/.

    Now I get something starting with ya29. and its a little longer I guess. So this is good generated token now and can I past it in app? Or something went wrong?

    nvm, just pasted it and its working. You may want to edit #1 post instruction about "always starts with /1" to not confuse others.
    Last edited by pinn90; 07-22-2016 at 04:19 AM.

  7. #1297
    zoozuu'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)
    When servers up, take pic

    Battle, pokemons, pokestops now working good

  8. #1298
    Swosher1's Avatar Member
    Reputation
    1
    Join Date
    Nov 2015
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Went from level 10 to 20 in just 6hrs thanks !!

  9. #1299
    Snuppert's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jul 2016
    Posts
    75
    Thanks G/R
    5/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Andrex430 View Post
    how do you set when to use pokeball and when to use great/ultra ball?

    at what CP do you recommend to use each?
    Existing code in current project:
    Code:
     // Use better balls for high CP pokemon
                if (masterBallsCount > 0 && pokemonCP >= 1000)
                    return MiscEnums.Item.ITEM_MASTER_BALL;
    
                if (ultraBallsCount > 0 && pokemonCP >= 600)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
    
                if (greatBallsCount > 0 && pokemonCP >= 150)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
    
                // If low CP pokemon, but no more pokeballs; only use better balls if pokemon are of semi-worthy quality
                if (pokeBallsCount > 0)
                    return MiscEnums.Item.ITEM_POKE_BALL;
                else if ((greatBallsCount < 40 && greatBallsCount > 0 && pokemonCP >= 200) || greatBallsCount >= 40)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
                else if (ultraBallsCount > 0 && pokemonCP >= 500)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
                else if (masterBallsCount > 0 && pokemonCP >= 700)
                    return MiscEnums.Item.ITEM_MASTER_BALL;
    
                return MiscEnums.Item.ITEM_POKE_BALL;
    You'll figure it out. Just change the levels to whatever you want and whenever you want it to use a specific ball.

    Originally Posted by Swosher1 View Post
    Went from level 10 to 20 in just 6hrs thanks !!
    Grats but goodluck on your next levels. Goes much much slower from 20.

  10. #1300
    Andrex430's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Snuppert View Post
    Existing code in current project:
    Code:
     // Use better balls for high CP pokemon
                if (masterBallsCount > 0 && pokemonCP >= 1000)
                    return MiscEnums.Item.ITEM_MASTER_BALL;
    
                if (ultraBallsCount > 0 && pokemonCP >= 600)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
    
                if (greatBallsCount > 0 && pokemonCP >= 150)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
    
                // If low CP pokemon, but no more pokeballs; only use better balls if pokemon are of semi-worthy quality
                if (pokeBallsCount > 0)
                    return MiscEnums.Item.ITEM_POKE_BALL;
                else if ((greatBallsCount < 40 && greatBallsCount > 0 && pokemonCP >= 200) || greatBallsCount >= 40)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
                else if (ultraBallsCount > 0 && pokemonCP >= 500)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
                else if (masterBallsCount > 0 && pokemonCP >= 700)
                    return MiscEnums.Item.ITEM_MASTER_BALL;
    
                return MiscEnums.Item.ITEM_POKE_BALL;
    You'll figure it out. Just change the levels to whatever you want and whenever you want it to use a specific ball.



    Grats but goodluck on your next levels. Goes much much slower from 20.
    but in which file is this?

  11. #1301
    Snuppert's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jul 2016
    Posts
    75
    Thanks G/R
    5/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Andrex430 View Post
    but in which file is this?
    Client.cs around line ~ 160. May difference a bit since I added some own shit.

  12. Thanks Andrex430 (1 members gave Thanks to Snuppert for this useful post)
  13. #1302
    Andrex430's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Snuppert View Post
    Client.cs around line ~ 160. May difference a bit since I added some own shit.
    I don't have this: Screenshot by Lightshot

  14. #1303
    oabdullah's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    9
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, it says farming started, but isn't actually doing anything. It's been up for 5 minutes so far.

  15. #1304
    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)
    I cant still connect wia ptc

  16. #1305
    Snuppert's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jul 2016
    Posts
    75
    Thanks G/R
    5/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Andrex430 View Post
    I don't have this: Screenshot by Lightshot
    Ah, seems you have the pre-compiled old version. You can only change when you build it yourself in Visual Studio 2015. You can change what you want. On a precompiled one, you can only change settings that are in other files etc. Not the actual program itself. (Unless some cracking, but still).

    I recommend you install Visual Studio 2015, Go to the first page of this thread, download the Github repository and build it in Visual Studio 2015. Please first look here for error's you may encounter before asking, cause I've seen questions being answered over 20 times and people still ask the same questions.

    If this is too much for you, I recommend you stay at your precompiled app or let a friend create a new one for you with your needs.

    Originally Posted by oabdullah View Post
    Hmm, it says farming started, but isn't actually doing anything. It's been up for 5 minutes so far.
    Originally Posted by zenenet View Post
    I cant still connect wia ptc
    Servers are unstable as it has been released in Japan today.

Similar Threads

  1. [Release] MyGoBuddy Pokemon BOT/Sniper - Cross Platform - Machine Learning - Always Updated
    By MyGoBuddy in forum Pokemon GO Hacks|Cheats
    Replies: 49
    Last Post: 09-30-2016, 07:36 PM
  2. [Release] Maclone's Community Versions - Compiled, ready to go PokemonGo bots
    By maclone in forum Pokemon GO Hacks|Cheats
    Replies: 2519
    Last Post: 08-24-2016, 11:55 AM
  3. [REV2.0.1] [UPDATED!] Fishing Bot. Written by me =)
    By PopcornWoW in forum World of Warcraft Bots and Programs
    Replies: 22
    Last Post: 06-25-2008, 01:04 AM
  4. Tool to get all Fish/bots working for EU version users! [self-made]
    By -MadMax- in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 09-08-2006, 09:02 AM
  5. [WoW Bot] WoW Glider Full Version 0.6.8
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 39
    Last Post: 05-08-2006, 12:15 AM
All times are GMT -5. The time now is 02:46 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