[UPDATED] Pokemon Bot in C# Community Version menu

User Tag List

Page 5 of 229 FirstFirst 12345678955105 ... LastLast
Results 61 to 75 of 3427
  1. #61
    KramAlpha's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @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;
            }
        }

    [UPDATED] Pokemon Bot in C# Community Version
  2. Thanks simo4295 (1 members gave Thanks to KramAlpha for this useful post)
  3. #62
    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)
    does it transfer EVERYTHING by default EXCEPT one of the highes CP? or only the very few on the list? i now see two sections that have a list of the small list of pokemon to avoid????

  4. #63
    bengeminuy's Avatar Member
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    40
    Thanks G/R
    8/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by axewfious View Post
    Amazing bot, truly. A few suggestions:
    1. Make the Token either Auto-Copy to clipboard, or save itself to another text file such as Token.xml so we can just copy paste in user.xml instead of having to type it all down.
    2. Get yourself a donation button, this bot is awesome.

    also, in the OP, you say "settings.xml" instead of "user.xml" ;p
    You can easily copy this. Right click the title bar of the command prompt, click mark, then highlight the token, press enter, that should copy all of it. Then paste using Ctrl-V or right click then paste. It works.

  5. #64
    dhaiku's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    3
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i noticed that when bag is full and you are out of pokeballs it kinda stops working
    cant get pokebals from pokestops -> cant catch pokemon

    really great piece of software i love it

    also would be cool if he could use raspberries

  6. Thanks LEOiofjsifojeisofseif (1 members gave Thanks to dhaiku for this useful post)
  7. #65
    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)
    How to use diffrent type of pokeball ? Smth like I found pikachu 600CP+ and bot used great or better pokeball ?

    Edit. Nevermind its workin lol now Pinsir 1158 run away and bot used Ultra Ball. But which command is responsible for that ?
    Last edited by janekkk; 07-21-2016 at 09:30 AM.

  8. #66
    qweeboi's Avatar Member
    Reputation
    14
    Join Date
    Apr 2009
    Posts
    135
    Thanks G/R
    6/13
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If possible, but that might be a completely new bot.
    Anyway, a "bot"/module that you can start to speed-farm exp using evolves.

    Let's say that you fill up on Caterpie, Weedle and Pidgeys, so you have max amounts of pokémon on you. Then you start this bot/module, and it'll use a lucky egg, STAND STILL, and just evolve pokémon after pokémon. And of course transfer once they've been evolved once.

    I assume that you could skip the whole animation wait time if done within a bot, since the animations are client-sided?

  9. #67
    Sonanio's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just getting "Could not load settings. user.xml either missing or malformed" set everything correctly up

  10. #68
    alex22808'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)
    I keep getting this error. it will run for a minute or so, go to a poke stop and catch a few pokemon then the bot just gets stuck in the restarting loop and does not work. symptoms of a softban or am i doing something wrong? [UPDATED] Pokemon Bot in C# Community Version-capture-jpg

  11. #69
    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)
    Does this fix the crash every x minutes?

  12. #70
    Zemnexx's Avatar Active Member CoreCoins Purchaser Authenticator enabled
    Reputation
    31
    Join Date
    Aug 2011
    Posts
    141
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's beautiful. :gusta:

  13. #71
    Neer's Avatar Trend Rider Authenticator enabled
    Reputation
    1445
    Join Date
    Apr 2007
    Posts
    749
    Thanks G/R
    177/828
    Trade Feedback
    5 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sonanio View Post
    Just getting "Could not load settings. user.xml either missing or malformed" set everything correctly up
    Post your settings here without the login info.

  14. #72
    zerospec0's Avatar Knight-Lieutenant
    Reputation
    22
    Join Date
    Jul 2016
    Posts
    348
    Thanks G/R
    21/19
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Using wine and get "Failed to get 100ns ticks" Any idea what that could mean :/

  15. #73
    emplode's Avatar Member
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It works great, just one concern is the speed at which it catches pokemon, it like 1 every few seconds. Which is asking for a ban, I think.

    Is there any way to add a delay?

  16. #74
    Sora1994's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could you show the Level of the Account as well please?

  17. #75
    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)
    Having an option to set when to use Greater Pokeball would be good, something where we can input a CP number for the bot to use greater ball if we have them if see's the set CP or higher Also having the option for walking simulation instead of porting would be good Im sure some people would like the porting option to be left in.

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:24 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search