[UPDATED] Pokemon Bot in C# Community Version menu

User Tag List

Page 69 of 229 FirstFirst ... 19656667686970717273119169 ... LastLast
Results 1,021 to 1,035 of 3427
  1. #1021
    maddhadder90's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nairdaaa View Post
    Does the bot stop after 30 mins with Ptc login?
    no it doesnt stop after 30 mins

    [UPDATED] Pokemon Bot in C# Community Version
  2. #1022
    omenfiz's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if anyone can make this dream come true, OMG..
    1. Use Pokeball -> Use Great Ball or Use all ball not only pokeball
    2. auto drop item like potion, revive or poke ball

  3. #1023
    Ezca's Avatar Banned
    Reputation
    2
    Join Date
    May 2016
    Posts
    26
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Working fine for me, but I'm at a GPS coordinates not even 10 mins away from home, has like 10 pokestops in a small area.

  4. #1024
    maddhadder90's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    there is something like that in the githubs now but they arent precompiled

  5. #1025
    cosmoexe's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I keep getting unexpected stop? Restarting in 20 seconds.
    Despite the location coordinates being on my home. Can someone help please?

  6. #1026
    maddhadder90's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do you go about compiling an exe from the githubs?

  7. #1027
    nertman's Avatar Active Member
    Reputation
    17
    Join Date
    Aug 2008
    Posts
    64
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ezca View Post
    Working fine for me, but I'm at a GPS coordinates not even 10 mins away from home, has like 10 pokestops in a small area.
    Also roughly 5-10 minutes away from my home with about 50 pokestops in the area and a bunch of pokemon

    Originally Posted by cosmoexe View Post
    I keep getting unexpected stop? Restarting in 20 seconds.
    Despite the location coordinates being on my home. Can someone help please?
    I am also having this issue

  8. #1028
    flashknox's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cosmoexe View Post
    I keep getting unexpected stop? Restarting in 20 seconds.
    Despite the location coordinates being on my home. Can someone help please?
    Post the 2 lines with the coordinates

  9. #1029
    nyhmnyhm'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)
    Thanks lots

  10. #1030
    nertman's Avatar Active Member
    Reputation
    17
    Join Date
    Aug 2008
    Posts
    64
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by flashknox View Post
    Post the 2 lines with the coordinates
    <DefaultLatitude>41.500832</DefaultLatitude> <!-- Default Amsterdam Central Station -->
    <DefaultLongitude>-81.696146</DefaultLongitude> <!-- Default Amsterdam Central Station -->

  11. #1031
    shadowht's Avatar Member CoreCoins Purchaser
    Reputation
    6
    Join Date
    Jun 2012
    Posts
    113
    Thanks G/R
    44/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dreambar.wi View Post
    I'm assuming you are trying to change this block of code?
    Code:
    var dupes = allpokemons.OrderBy(x => x.Cp).Select((x, i) => new { index = i, value = x })
                        .GroupBy(x => x.value.PokemonId)
                        .Where(x => x.Skip(1).Any());
    I'm assuming this is what you want. Keep the 2 highest cp and dump the rest.
    Code:
    var dupes = allpokemons.SelectMany(p => p.OrderByDescending(x => x.Cp).Skip(2));
    no.. lol
    i want to keep 2 of each, and 1k+cp too if possible
    i already tried many codes but didnt found a solution yet, i am new to this programing thing
    just gonna keep trying!

  12. #1032
    flashknox's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nertman View Post
    <DefaultLatitude>41.500832</DefaultLatitude> <!-- Default Amsterdam Central Station -->
    <DefaultLongitude>-81.696146</DefaultLongitude> <!-- Default Amsterdam Central Station -->
    Dang I was thinking you input it wrong but it looks perfectly fine. I'm not sure bud

  13. #1033
    husec's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    45
    Thanks G/R
    19/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a way to keep Pokemon over a certain CP (say 600) while using duplicate as TransferType?

  14. #1034
    dreambar.wi's Avatar Private
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    13
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by shadowht View Post
    no.. lol
    i want to keep 2 of each, and 1k+cp too if possible
    i already tried many codes but didnt found a solution yet, i am new to this programing thing
    just gonna keep trying!
    Group them by their type then sort then base on cp
    Code:
    var dupes = allpokemons.GroupBy(p => p.PokemonId)
                    .Where(x => x.Count() > 1)
                    .SelectMany(p => p.OrderByDescending(x => x.Cp).Skip(2));

  15. Thanks shadowht (1 members gave Thanks to dreambar.wi for this useful post)
  16. #1035
    Sithylis's Avatar Elite User Authenticator enabled
    Reputation
    332
    Join Date
    Jul 2016
    Posts
    562
    Thanks G/R
    124/277
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by omenfiz View Post
    if anyone can make this dream come true, OMG..
    1. Use Pokeball -> Use Great Ball or Use all ball not only pokeball
    2. auto drop item like potion, revive or poke ball
    Its already in my github (detectiveSquirrel)

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 11:26 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