[UPDATED] Pokemon Bot in C# Community Version menu

Shout-Out

User Tag List

Page 11 of 229 FirstFirst ... 78910111213141561111 ... LastLast
Results 151 to 165 of 3427
  1. #151
    janekkk's Avatar Member
    Reputation
    6
    Join Date
    Apr 2014
    Posts
    59
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    maxnutter maybe u have soft ban for long teleport ?

    [UPDATED] Pokemon Bot in C# Community Version
  2. #152
    ghostory's Avatar Corporal
    Reputation
    8
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by navyguy View Post
    Screenshot by Lightshot

    why are some of them being weird. the stops that is?
    If you're talking about why those two Pokestops have way more information than the other Pokestops, it is because that Pokestop found an egg which is why there is more text in the cmd window.

  3. #153
    HunterHero's Avatar Legendary
    Reputation
    656
    Join Date
    Jun 2006
    Posts
    879
    Thanks G/R
    150/230
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Hasonc View Post
    Here is what happens when I run it.




    what am i doing wrong?
    You probably switched around the password and the username. That's what a lot of people getting the immediate shutdown or this error have done wrong.

  4. #154
    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 KramAlpha View Post
    @Neer I suggest to implement my function to simulate human movement and not be soft banned teleporting to pokestops.
    You can put the movement speed as another config parameter.

    Code:
    public async Task<PlayerUpdateResponse> UpdatePlayerLocation(double lat, double lng)
            {
    
    
                System.Console.WriteLine(" ");
                System.Console.WriteLine("Moving to " + lat + " " + lng + " ...");
    
    
                double startX = _currentLat;
                double startY = _currentLng;
                double endX = lat;
                double endY = lng;
    
    
                double speed = 0.06f;
                float elapsed = 0.01f;
    
    
                // On starting movement
                double distance = Math.Sqrt(Math.Pow(endX - startX, 2) + Math.Pow(endY - startY, 2));
                double directionX = (endX - startX) / distance;
                double directionY = (endY - startY) / distance;
    
    
                double newlat = startX;
                double newLng = startY;
    
    
                while (Math.Sqrt(Math.Pow(newlat - startX, 2) + Math.Pow(newLng - startY, 2)) <= distance)
                {
    
    
                    newlat += directionX * speed * elapsed;
                    newLng += directionY * speed * elapsed;
    
    
                    System.Console.WriteLine(newlat + " " + newLng);
    
    
                    var customRequest1 = new Request.Types.PlayerUpdateProto()
                    {
                        Lat = Utils.FloatAsUlong(newlat),
                        Lng = Utils.FloatAsUlong(newLng)
                    };
    
    
                    var updateRequest1 = RequestBuilder.GetRequest(_unknownAuth, _currentLat, _currentLng, 10, new Request.Types.Requests()
                    {
                        Type = (int)RequestType.PLAYER_UPDATE,
                        Message = customRequest1.ToByteString()
                    });
                    var updateResponse1 = await _httpClient.PostProtoPayload<Request, PlayerUpdateResponse>($"https://{_apiUrl}/rpc", updateRequest1);
                    await Task.Delay(2000);
                }
    
    
                    SetCoordinates(lat, lng);
                var customRequest = new Request.Types.PlayerUpdateProto
                {
                    Lat = Utils.FloatAsUlong(_currentLat),
                    Lng = Utils.FloatAsUlong(_currentLng)
                };
    
    
                var updateRequest = RequestBuilder.GetRequest(_unknownAuth, _currentLat, _currentLng, 10,
                    new Request.Types.Requests
                    {
                        Type = (int) RequestType.PLAYER_UPDATE,
                        Message = customRequest.ToByteString()
                    });
                var updateResponse =
                    await
                        _httpClient.PostProtoPayload<Request, PlayerUpdateResponse>($"https://{_apiUrl}/rpc", updateRequest);
                return updateResponse;
            }
        }
    I second this idea, does this code work well Kram?

  5. Thanks teyra (1 members gave Thanks to KefkaBot for this useful post)
  6. #155
    Mario-swe's Avatar Member
    Reputation
    7
    Join Date
    Jan 2008
    Posts
    19
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by qweeboi View Post
    Did you download the source or the compiled version?
    i rly dont know what the difference about the version or what version i have.
    i am using "Pokemon Go Rocket API" to start it

  7. #156
    ghostory's Avatar Corporal
    Reputation
    8
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by maxnutter View Post
    This looks awesome, but I don't seem to be getting anything from any Pokestops, and can't catch anything. It's using my account correctly as I have no Pokeballs left!
    If you don't get anything from Pokestops, it either means your soft banned or you already have max inventory.

    If you can't catch any Pokemon, it either means your soft banned or you don't have any pokeballs left to use.

  8. #157
    Hasonc's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I checked to be sure and it's correct, I have no idea why it's loading into the wrong area.

  9. #158
    nckro's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    14
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guys, i'm working on a feature to delete unnecesary potions and revivals so the bot can function 24h. I will come back later hopefully with a build.

  10. #159
    navyguy's Avatar Active Member
    Reputation
    27
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    5/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by andyt315 View Post
    can someone add this list to this bot?
    Code:
    PokemonId.Bulbasaur,
                    PokemonId.Ivysaur,
                    PokemonId.Venusaur,
                    PokemonId.CHARMANDER,
                    PokemonId.Charmeleon,
                    PokemonId.Charizard,
                    PokemonId.Squirtle,
                    PokemonId.Wartortle,
                    PokemonId.Blastoise,
                    PokemonId.Caterpie,
                    PokemonId.Metapod,
                    PokemonId.Butterfree,
                    PokemonId.Weedle,
                    PokemonId.Kakuna,
                    PokemonId.Beedrill,
                    PokemonId.Pidgey,
                    PokemonId.Pidgeotto,
                    PokemonId.Pidgeot,
                    PokemonId.Rattata,
                    PokemonId.Raticate,
                    PokemonId.Spearow,
                    PokemonId.Fearow,
                    PokemonId.Ekans,
                    PokemonId.Arbok,
                    PokemonId.Pikachu,
                    PokemonId.Raichu,
                    PokemonId.Sandshrew,
                    PokemonId.Sandslash,
                    PokemonId.Nidorino,
                    PokemonId.Nidorina,
                    PokemonId.Nidoqueen,
                    PokemonId.NidoranMale,
                    PokemonId.Nidorino,
                    PokemonId.Nidoking,
                    PokemonId.Clefairy,
                    PokemonId.Clefable,
                    PokemonId.Vulpix,
                    PokemonId.Ninetales,
                    PokemonId.Jigglypuff,
                    PokemonId.Wigglytuff,
                    PokemonId.Zubat,
                    PokemonId.Golbat,
                    PokemonId.Oddish,
                    PokemonId.Gloom,
                    PokemonId.Vileplume,
                    PokemonId.Paras,
                    PokemonId.Parasect,
                    PokemonId.Venonat,
                    PokemonId.Venomoth,
                    PokemonId.Diglett,
                    PokemonId.Dugtrio,
                    PokemonId.Meowth,
                    PokemonId.Persian,
                    PokemonId.Psyduck,
                    PokemonId.Golduck,
                    PokemonId.Mankey,
                    PokemonId.Primeape,
                    PokemonId.Growlithe,
                    PokemonId.Arcanine,
                    PokemonId.Poliwag,
                    PokemonId.Poliwhirl,
                    PokemonId.Poliwrath,
                    PokemonId.Abra,
                    PokemonId.Kadabra,
                    PokemonId.Alakhazam,
                    PokemonId.Machop,
                    PokemonId.Machoke,
                    PokemonId.Machamp,
                    PokemonId.Bellsprout,
                    PokemonId.Weepinbell,
                    PokemonId.Victreebell,
                    PokemonId.Tentacool,
                    PokemonId.Tentacruel,
                    PokemonId.Geodude,
                    PokemonId.Graveler,
                    PokemonId.Golem,
                    PokemonId.Ponyta,
                    PokemonId.Rapidash,
                    PokemonId.Slowpoke,
                    PokemonId.Slowbro,
                    PokemonId.Magnemite,
                    PokemonId.Magneton,
                    //PokemonId.Farfetch'd,
                    PokemonId.Doduo,
                    PokemonId.Dodrio,
                    PokemonId.Seel,
                    PokemonId.Dewgong,
                    PokemonId.Grimer,
                    PokemonId.Muk,
                    PokemonId.Shellder,
                    PokemonId.Cloyster,
                    PokemonId.Gastly,
                    PokemonId.Haunter,
                    PokemonId.Gengar,
                    PokemonId.Onix,
                    PokemonId.Drowzee,
                    PokemonId.Hypno,
                    PokemonId.Krabby,
                    PokemonId.Kingler,
                    PokemonId.Voltorb,
                    PokemonId.Electrode,
                    PokemonId.Exeggcute,
                    PokemonId.Exeggutor,
                    PokemonId.Cubone,
                    PokemonId.Marowak,
                    PokemonId.Hitmonlee,
                    PokemonId.Hitmonchan,
                    PokemonId.Lickitung,
                    PokemonId.Koffing,
                    PokemonId.Weezing,
                    PokemonId.Rhyhorn,
                    PokemonId.Rhydon,
                    PokemonId.Chansey,
                    PokemonId.Tangela,
                    PokemonId.Kangaskhan,
                    PokemonId.Horsea,
                    PokemonId.Seadra,
                    PokemonId.Goldeen,
                    PokemonId.Seaking,
                    PokemonId.Staryu,
                    PokemonId.Starmie,
                    //PokemonId.Mr. Mime,
                    PokemonId.Scyther,
                    PokemonId.Jynx,
                    PokemonId.Electabuzz,
                    PokemonId.Magmar,
                    PokemonId.Pinsir,
                    PokemonId.Tauros,
                    PokemonId.Magikarp,
                    PokemonId.Gyarados,
                    PokemonId.Lapras,
                    PokemonId.Ditto,
                    PokemonId.Eevee,
                    PokemonId.Vaporeon,
                    PokemonId.Jolteon,
                    PokemonId.Flareon,
                    PokemonId.Porygon,
                    PokemonId.Omanyte,
                    PokemonId.Omastar,
                    PokemonId.Kabuto,
                    PokemonId.Kabutops,
                    PokemonId.Aerodactyl,
                    PokemonId.Snorlax,
                    PokemonId.Articuno,
                    PokemonId.Zapdos,
                    PokemonId.Moltres,
                    PokemonId.Dratini,
                    PokemonId.Dragonair,
                    PokemonId.Dragonite
                    //PokemonId.Mewtwo,
                    //PokemonId.Mew

    You literally just copy over the ones in there lol.

  11. #160
    andyt315's Avatar Member
    Reputation
    4
    Join Date
    May 2012
    Posts
    72
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what logic of using balls? I would like to use the best quality ball before it uses normal ball.

  12. #161
    Hasonc's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by HunterHero View Post
    You probably switched around the password and the username. That's what a lot of people getting the immediate shutdown or this error have done wrong.
    its right bro idk whats causing the error lol..

  13. #162
    navyguy's Avatar Active Member
    Reputation
    27
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    5/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where was that script to print out how many balls were left. and what ball its using. that could greatly help with questions lol, it was in the one i forget where to paste it and the new version don't seem compatible.

  14. #163
    Deadspacezx's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    13
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its supposed to make the program start back up again looks like we both have the issue where it had no issue starting without it, are you on google as well?
    do you get
    server patched
    objective patched
    profile patched
    and then it works for 30 min?

  15. #164
    senseirain's Avatar Member
    Reputation
    2
    Join Date
    Jun 2016
    Posts
    142
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Question PLEASE ANSWER!
    Which one is the token?
    i got this "1/Naa8E4YqtdcWGW-ICuRqiGYnupLMfjgmn7JxaGRl1Hg" so which one is the correct code ???

    A ) <GoogleRefreshToken>1/Naa8E4YqtdcWGW-ICuRqiGYnupLMfjgmn7JxaGRl1Hg</GoogleRefreshToken>

    B ) <GoogleRefreshToken>Naa8E4YqtdcWGW-ICuRqiGYnupLMfjgmn7JxaGRl1Hg</GoogleRefreshToken>

  16. #165
    Mew351's Avatar Site Donator CoreCoins Purchaser
    Reputation
    13
    Join Date
    Oct 2013
    Posts
    85
    Thanks G/R
    38/12
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by navyguy View Post
    Screenshot by Lightshot

    why on earth did it catch so many ahaha, any how. i login and still see all the pinsers? why is that> everything else seems linked up?
    Central Park has sooooo many Pinsirs haha

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 07:44 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