Necronomicon's Version of FeroxRev's Bot menu

Shout-Out

User Tag List

Page 58 of 66 FirstFirst ... 8545556575859606162 ... LastLast
Results 856 to 870 of 976
  1. #856
    iKweli's Avatar Member
    Reputation
    12
    Join Date
    Mar 2009
    Posts
    135
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This bot is working great! I love it.
    One thing concerns me though, why does the google bot stop updating live information in the cmd after 10 minutes? I feel like it stopped. I have to end up closing it and then pressing ctrl +f5 to restart it again for it to continue updating live

    Originally LuCas23332

    Necronomicon's Version of FeroxRev's Bot
  2. #857
    Iocere's Avatar Member
    Reputation
    1
    Join Date
    Dec 2013
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OK I did this to restart if it get stuck without the external CMD script inside Program.cs

    Code:
            private static async Task ExecuteFarmingPokestopsAndPokemons(Client client)
            {
                var mapObjects = await client.GetMapObjects();
    
                var pokeStops =
                    mapObjects.MapCells.SelectMany(i => i.Forts)
                        .Where(
                            i =>
                                i.Type == FortType.Checkpoint &&
                                i.CooldownCompleteTimestampMs < DateTime.UtcNow.ToUnixTime());
    
                foreach (var pokeStop in pokeStops)
                {
                    var update = await client.UpdatePlayerLocation(pokeStop.Latitude, pokeStop.Longitude);
                    var fortInfo = await client.GetFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude);
                    var fortSearch = await client.SearchFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude);
    
                    System.Console.WriteLine(
                        $"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {fortSearch.ExperienceAwarded}, Gems: {fortSearch.GemsAwarded}, Eggs: {fortSearch.PokemonDataEgg} Items: {GetFriendlyItemsString(fortSearch.ItemsAwarded)}");
    
                    await Task.Delay(15000);
                    await ExecuteCatchAllNearbyPokemons(client);
                }
    
                double lat = double.Parse(ConfigurationManager.AppSettings["DefaultLatitude"], CultureInfo.InvariantCulture);
                double lon = double.Parse(ConfigurationManager.AppSettings["DefaultLongitude"], CultureInfo.InvariantCulture);
    
                var res = await client.UpdatePlayerLocation(lat, lon);
    
            }
    This pretty much reset your position to the default spawn.

    And after the error catching put the Execute again (it's in the Execute method)

    Code:
                catch (TaskCanceledException tce) { System.Console.WriteLine("Task Canceled Exception - Restarting"); Execute(); }
                catch (UriFormatException ufe) { System.Console.WriteLine("System URI Format Exception - Restarting"); Execute(); }
                catch (ArgumentOutOfRangeException aore) { System.Console.WriteLine("ArgumentOutOfRangeException - Restarting"); Execute(); }
                catch (NullReferenceException nre) { System.Console.WriteLine("Null Refference - Restarting"); Execute(); }
    
                Execute();
    Make sure to put your GPS info into the App.Config!
    Last edited by Iocere; 07-21-2016 at 09:02 AM.

  3. #858
    winterfall500's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    62
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by iKweli View Post
    This bot is working great! I love it.
    One thing concerns me though, why does the google bot stop updating live information in the cmd after 10 minutes? I feel like it stopped. I have to end up closing it and then pressing ctrl +f5 to restart it again for it to continue updating live
    it happens sometimes. I tried not closing it one and it still gets me pokemons.

  4. #859
    b0Ni07's Avatar Sergeant Major
    Reputation
    19
    Join Date
    Jul 2016
    Posts
    184
    Thanks G/R
    7/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DanGuerrero View Post
    Am using this, should be implemented though.

    https://github.com/NecronomiconCodin.../pull/12/files
    yeah please +1

    also bot still doesnt transfer after catch pokemons. only on start i think
    Last edited by b0Ni07; 07-21-2016 at 09:03 AM.

  5. #860
    Jig666's Avatar Member
    Reputation
    3
    Join Date
    Mar 2013
    Posts
    39
    Thanks G/R
    7/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by katja View Post
    sorry but thats bullshit... i use the latest version but i get this error on my PTC account .. win 10 64bit visual studio 2015 community v 14.0.25123.00 update 2
    are you serious right now? show some appreciation you pos!

    I have the latest version and it is running perfectly! It even restarted itself after a recent crash! completely autopilot mode now! <3

  6. #861
    angrytestie's Avatar Active Member
    Reputation
    15
    Join Date
    Oct 2012
    Posts
    149
    Thanks G/R
    2/13
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by b0Ni07 View Post
    yeah please +1

    also bot still doesnttransfer after catch pokemons. only on start i think
    yea a catch into transfer pokemon feature would be nice -> except pokemon you want ;D

  7. #862
    winterfall500's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    62
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do we have an option to change the finding/catching rate of pokemons?

  8. #863
    SeaPancake3's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any way we could evolve before we transfer? More xp this way

  9. #864
    TBL-Equi's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    50
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DanGuerrero View Post
    Am using this, should be implemented though.

    https://github.com/NecronomiconCodin.../pull/12/files
    Thx, for that. WIll add it manually this evening if it isnt implemented into the master by then. Right now it isnt...

  10. #865
    dermeix's Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    22
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this bot doesnt catch any magikarp for me.

    put the bot two times directly in a spot with 3-4 magikarps within less than 100meters and just got rattatas, zubats and others.....
    is there something in the code or just really bad luck

  11. #866
    TBL-Equi's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    50
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by angrytestie View Post
    yea a catch into transfer pokemon feature would be nice -> except pokemon you want ;D
    The newest version (about 40 minutes old) has the bot transferring unwanted pokemons peiodically instead of only on startup. Just need to get the newest version.

  12. #867
    katja's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    27
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jig666 View Post
    are you serious right now? show some appreciation you pos!

    I have the latest version and it is running perfectly! It even restarted itself after a recent crash! completely autopilot mode now! <3
    sorry i won´t let me call a liar - i wanna help to get bugs fixed and then ppl come call me a liar.. whats wrong with you guys?
    just relax and be happy about the great tool and let ppl report their bugs

  13. #868
    spodakek's Avatar Contributor Authenticator enabled
    Reputation
    98
    Join Date
    Jul 2016
    Posts
    232
    Thanks G/R
    15/86
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by katja View Post
    sorry but thats bullshit... i use the latest version but i get this error on my PTC account .. win 10 64bit visual studio 2015 community v 14.0.25123.00 update 2
    Calling bullshit on the active contributor to this bot isn't wise, everyone else uses the bot fine so if anything you should elaborate your problem instead of being rude.
    Post a screenshot of your build log / command prompt log or something.

  14. Thanks Jig666 (1 members gave Thanks to spodakek for this useful post)
  15. #869
    hardell's Avatar Member
    Reputation
    11
    Join Date
    Mar 2016
    Posts
    68
    Thanks G/R
    15/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Iocere View Post
    OK I did this to restart if it get stuck without the external CMD script inside Program.cs

    Code:
            private static async Task ExecuteFarmingPokestopsAndPokemons(Client client)
            {
                var mapObjects = await client.GetMapObjects();
    
                var pokeStops =
                    mapObjects.MapCells.SelectMany(i => i.Forts)
                        .Where(
                            i =>
                                i.Type == FortType.Checkpoint &&
                                i.CooldownCompleteTimestampMs < DateTime.UtcNow.ToUnixTime());
    
                foreach (var pokeStop in pokeStops)
                {
                    var update = await client.UpdatePlayerLocation(pokeStop.Latitude, pokeStop.Longitude);
                    var fortInfo = await client.GetFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude);
                    var fortSearch = await client.SearchFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude);
    
                    System.Console.WriteLine(
                        $"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {fortSearch.ExperienceAwarded}, Gems: {fortSearch.GemsAwarded}, Eggs: {fortSearch.PokemonDataEgg} Items: {GetFriendlyItemsString(fortSearch.ItemsAwarded)}");
    
                    await Task.Delay(15000);
                    await ExecuteCatchAllNearbyPokemons(client);
                }
    
                double lat = double.Parse(ConfigurationManager.AppSettings["DefaultLatitude"], CultureInfo.InvariantCulture);
                double lon = double.Parse(ConfigurationManager.AppSettings["DefaultLongitude"], CultureInfo.InvariantCulture);
    
                var res = await client.UpdatePlayerLocation(lat, lon);
    
            }
    This pretty much reset your position to the default spawn.

    And after the error catching put the Execute again (it's in the Execute method)

    Code:
                catch (TaskCanceledException tce) { System.Console.WriteLine("Task Canceled Exception - Restarting"); Execute(); }
                catch (UriFormatException ufe) { System.Console.WriteLine("System URI Format Exception - Restarting"); Execute(); }
                catch (ArgumentOutOfRangeException aore) { System.Console.WriteLine("ArgumentOutOfRangeException - Restarting"); Execute(); }
                catch (NullReferenceException nre) { System.Console.WriteLine("Null Refference - Restarting"); Execute(); }
    
                Execute();
    Make sure to put your GPS info into the App.Config!
    It already calls execute in the catch block.

  16. #870
    kinkedmojo's Avatar Member
    Reputation
    1
    Join Date
    Oct 2015
    Posts
    6
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DanGuerrero View Post
    Am using this, should be implemented though.

    https://github.com/NecronomiconCodin.../pull/12/files
    Where do you implement this code in order to make it work? Pretty useful addition. Thanks in advance

Similar Threads

  1. [Question] Editing console output (with FeroxRev's bot)
    By Zexpeo in forum Pokemon GO Chat
    Replies: 0
    Last Post: 07-22-2016, 01:55 PM
  2. Mac OS X BG Bot version 2.0.X
    By Valmilu in forum World of Warcraft Bots and Programs
    Replies: 30
    Last Post: 02-10-2007, 11:39 AM
  3. 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
  4. [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 08:56 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