Necronomicon's Version of FeroxRev's Bot menu

User Tag List

Page 3 of 66 FirstFirst 123456753 ... LastLast
Results 31 to 45 of 976
  1. #31
    nav4321's Avatar Elite User
    CoreCoins Purchaser
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    1,259
    Thanks G/R
    2/19
    Trade Feedback
    63 (94%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You seem to have changed the function of settings.cs, previously was much easier to understand.

    how do we make it choose highest cp pokemon and transfer crappy pokemon?

    Thanks and sorry for the repetitive question.

    Necronomicon's Version of FeroxRev's Bot
  2. #32
    explosive82's Avatar Member
    Reputation
    4
    Join Date
    Sep 2014
    Posts
    77
    Thanks G/R
    1/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do i add pokemon to the transfer list? I see that i can edit it but how do i put like the ID with it or w/e

  3. #33
    megachimeraaa'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 winterfall500 View Post
    i'm getting retry request?
    same here,i hope they will tell us a solution

  4. #34
    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)
    is it normal that i'm gettin retry request right now? im using google

  5. #35
    soujiro707's Avatar Member
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    27
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does this bypass the need to enter the google device code every 30 minutes?

  6. #36
    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)
    I'm working with necro on the transfer types and settings.

    Currently, all settings are in PokemonGo\RocketAPI\Console\App.config

    All the various types of transfers are now explained in the readme. Hopefully it'll now be clear what they all do.

  7. #37
    cedricdu94's Avatar Member
    Reputation
    11
    Join Date
    May 2009
    Posts
    175
    Thanks G/R
    9/10
    Trade Feedback
    6 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nav4321 View Post
    You seem to have changed the function of settings.cs, previously was much easier to understand.

    how do we make it choose highest cp pokemon and transfer crappy pokemon?

    Thanks and sorry for the repetitive question.
    Same question

  8. #38
    avin29's Avatar Member
    Reputation
    2
    Join Date
    Mar 2016
    Posts
    28
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this is server PROBLEM this error google account Screenshot by Lightshot ???

  9. #39
    ImmortalTech's Avatar Member
    Reputation
    5
    Join Date
    Dec 2009
    Posts
    89
    Thanks G/R
    1/4
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nav4321 View Post
    You seem to have changed the function of settings.cs, previously was much easier to understand.

    how do we make it choose highest cp pokemon and transfer crappy pokemon?

    Thanks and sorry for the repetitive question.
    Probably this:

    Code:
    if (ClientSettings.TransferType == "leaveStrongest")
                    await TransferAllButStrongestUnwantedPokemon(client);
                else if (ClientSettings.TransferType == "all")
                    await TransferAllGivenPokemons(client, pokemons);
                else if (ClientSettings.TransferType == "duplicate")
                    await TransferDuplicatePokemon(client);
                else if (ClientSettings.TransferType == "cp")
                    await TransferAllWeakPokemon(client, ClientSettings.TransferCPThreshold);
                else
                    System.Console.WriteLine("Wrong trasnferType setting");
                if (ClientSettings.EvolveAllGivenPokemons)
                    await EvolveAllGivenPokemons(client, pokemons);

  10. #40
    uploader619's Avatar Knight
    Reputation
    65
    Join Date
    Jul 2016
    Posts
    219
    Thanks G/R
    13/56
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can it not show which account is logged in? i have multiple accounts when i open all of them its named as CMD only cant even differentiate which of my accounts is running still or crashed already

  11. #41
    chocococo1's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    15
    Thanks G/R
    7/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by megachimeraaa View Post
    same here,i hope they will tell us a solution
    Originally Posted by winterfall500 View Post
    is it normal that i'm gettin retry request right now? im using google
    yes, the servers are still broken so that is normal

  12. #42
    megachimeraaa'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)
    whi i get retry request error?please can tell me how to fix it?please sir thank you

  13. #43
    dumars's Avatar Active Member CoreCoins Purchaser
    Reputation
    30
    Join Date
    May 2009
    Posts
    63
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nav4321 View Post
    You seem to have changed the function of settings.cs, previously was much easier to understand.

    how do we make it choose highest cp pokemon and transfer crappy pokemon?

    Thanks and sorry for the repetitive question.
    Open Program.cs, There is alots of helpful notes.



    foreach (var unwantedPokemonType in unwantedPokemonTypes)
    {
    var pokemonOfDesiredType = pokemons.Where(p => p.PokemonId == unwantedPokemonType)
    .OrderByDescending(p => p.Cp)
    .ToList();

    var unwantedPokemon =
    pokemonOfDesiredType.Skip(1) // keep the strongest one for potential battle-evolving
    .ToList();

  14. #44
    akuros123's Avatar Member
    Reputation
    5
    Join Date
    May 2016
    Posts
    27
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its error men

    Coded by Ferox - edited by NecronomiconCoding Awesome! You have already got the newest version! Please visit https://www.google.com/device and enter PTKY-YPTJ

  15. #45
    Ehnoah's Avatar Elite User
    Reputation
    398
    Join Date
    Sep 2006
    Posts
    1,028
    Thanks G/R
    16/96
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Added a Pull Request

Page 3 of 66 FirstFirst 123456753 ... 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 02:28 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