Necronomicon's Version of FeroxRev's Bot menu

Shout-Out

User Tag List

Page 24 of 66 FirstFirst ... 202122232425262728 ... LastLast
Results 346 to 360 of 976
  1. #346
    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 Devolkoff View Post
    ok some question
    is it only transfer when start? or when 250/250 too?
    only at start

    Necronomicon's Version of FeroxRev's Bot
  2. #347
    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)
    Originally Posted by Ainess View Post
    if you want to use pokeballs > greatballs > ultraballs
    change

    to
    Can I put it to Neer version and where ?

  3. Thanks iiymij (1 members gave Thanks to janekkk for this useful post)
  4. #348
    Merudo's Avatar Sergeant
    Reputation
    27
    Join Date
    Jul 2016
    Posts
    35
    Thanks G/R
    0/25
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I found a way to transfer every 100 pokemon caught!

    1. Open Pokemon-Go-Rocket-API-master\PokemonGo\RocketAPI\Console\Program.cs

    2. In namespace PokemonGo.RocketAPI.Console { internal class Program { } }, add before the existing public static void CheckVersion() the following line:

    Code:
    public static int nbCatches = 0;
    3. In private static async Task ExecuteCatchAllNearbyPokemons(Client client), add the following lines in between the two await Task.Delay(5000); at the end of the function:
    Code:
                    if (caughtPokemonResponse.Status == CatchPokemonResponse.Types.CatchStatus.CatchSuccess)
                        nbCatches = nbCatches + 1;
                    if (nbCatches >= 100)
                    {
                        var inventory = await client.GetInventory();
                        var inv_pokemons =
                        inventory.InventoryDelta.InventoryItems.Select(i => i.InventoryItemData?.Pokemon)
                        .Where(p => p != null && p?.PokemonId > 0);
    
                        if (ClientSettings.TransferType == "leaveStrongest")
                            await TransferAllButStrongestUnwantedPokemon(client);
                        else if (ClientSettings.TransferType == "all")
                            await TransferAllGivenPokemons(client, inv_pokemons);
                        else if (ClientSettings.TransferType == "duplicate")
                            await TransferDuplicatePokemon(client);
                        else if (ClientSettings.TransferType == "cp")
                            await TransferAllWeakPokemon(client, ClientSettings.TransferCPThreshold);
                        else
                            System.Console.WriteLine("Transfering pokemon disabled");
                        if (ClientSettings.EvolveAllGivenPokemons)
                            await EvolveAllGivenPokemons(client, inv_pokemons);
    
                        nbCatches = 0;
                    }
    4. You can check these screenshots to see if you done it correctly: step 1, step 2.
    Last edited by Merudo; 07-20-2016 at 10:56 PM.

  5. Thanks Trip_Machine (1 members gave Thanks to Merudo for this useful post)
  6. #349
    tentrust's Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Copy this code into Line 153 of programm.cs !!
    it will restart ur farming automaticly after 40 seconds.




    Code:
                try
                {
                    System.Console.WriteLine("||Farm Started||");
                    await ExecuteFarmingPokestopsAndPokemons(client);
                    System.Console.WriteLine("Unexpected stop? Restarting in 40 seconds.");
                    await Task.Delay(40000);
                    Execute();
                }
                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(); }

  7. Thanks psicrest (1 members gave Thanks to tentrust for this useful post)
  8. #350
    eltiti55555's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    25
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tentrust View Post
    Copy this code into Line 153 of programm.cs !!
    it will restart ur farming automaticly after 40 seconds.




    Code:
                try
                {
                    System.Console.WriteLine("||Farm Started||");
                    await ExecuteFarmingPokestopsAndPokemons(client);
                    System.Console.WriteLine("Unexpected stop? Restarting in 40 seconds.");
                    await Task.Delay(40000);
                    Execute();
                }
                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(); }
    What does this do exactly? And do you mean after line: await EvolveAllGivenPokemons(client, pokemons); ??

  9. #351
    Smoshi's Avatar Member
    Reputation
    3
    Join Date
    Apr 2007
    Posts
    59
    Thanks G/R
    4/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm getting a syntax error when trying to add pokemonId's to the unwanted list.

  10. #352
    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)
    using the bat file i get this error? Screenshot by Lightshot

    idk why they other one runs fune on my google account one (this one is the PTC) i can manually start it tho

  11. #353
    balkai's Avatar Member
    Reputation
    3
    Join Date
    May 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Smoshi View Post
    I'm getting a syntax error when trying to add pokemonId's to the unwanted list.
    you probably made a spelling error, anyway no one can help you with such a vague explanation

  12. #354
    CerealMilk'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)
    Why the new build doesnt have? Or if it does, where?
    Code:
        <add key="TransferType" value="duplicate"/><!--none/cp/leaveStrongest/duplicate/all Whitelists/blackslists for each type is in Program.cs-->
        <add key="TransferCPThreshold" value="0"/><!--transfer pokemon with CP less than this value if cp transfer type is selected. Whitelist in Program.cs-->
        <add key="EvolveAllGivenPokemons" value="false"/>

  13. #355
    Smoshi's Avatar Member
    Reputation
    3
    Join Date
    Apr 2007
    Posts
    59
    Thanks G/R
    4/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by balkai View Post
    you probably made a spelling error, anyway no one can help you with such a vague explanation
    Nvm I got it. Forgot to add the comma after the pokemon.

  14. #356
    tentrust's Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes after line: await EvolveAllGivenPokemons(client, pokemons);

    if ur bot runs out of pokestops in your area the bot will stop ..many people have this problem... this code will simply restart farming from the first pokestop...40 sec. delay because if your last pokestop is too far away you might get a short softban

  15. #357
    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)
    edit. nvm.......

  16. #358
    OverdoseDelusion's Avatar Sergeant
    Reputation
    16
    Join Date
    Jul 2016
    Posts
    67
    Thanks G/R
    8/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ainess View Post
    if you want to use pokeballs > greatballs > ultraballs
    change

    to
    if you post something like this, better to put CODE tags instead of pictures, especially for the new guys TIA

    Change This

    Code:
                if (masterBallsCount > 0)
                    return MiscEnums.Item.ITEM_MASTER_BALL;
    
                if (ultraBallsCount > 0)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
    
                if (greatBallsCount > 0)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
    
                return MiscEnums.Item.ITEM_POKE_BALL;
    }
    to this

    Code:
                if (pokeBallsCount > 0)
                    return MiscEnums.Item.ITEM_POKE_BALL;
    
                if (greatBallsCount > 0)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
    
                if (ultraBallsCount > 0)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
    
                return MiscEnums.Item.ITEM_MASTER_BALL;
            }
    "When solving problems, dig at the roots instead of just hacking at the leaves."

  17. #359
    ahmar789's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    22
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tentrust View Post
    Copy this code into Line 153 of programm.cs !!
    it will restart ur farming automaticly after 40 seconds.




    Code:
                try
                {
                    System.Console.WriteLine("||Farm Started||");
                    await ExecuteFarmingPokestopsAndPokemons(client);
                    System.Console.WriteLine("Unexpected stop? Restarting in 40 seconds.");
                    await Task.Delay(40000);
                    Execute();
                }
                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(); }
    Not workin.............

  18. #360
    rtstrauma's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a way to prioritize pokemon over pokestops? the spot I'm using has 6 lures within range and it's just hitting the pokestops and moving to more pokestops.

Page 24 of 66 FirstFirst ... 202122232425262728 ... LastLast

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:31 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