Necronomicon's Version of FeroxRev's Bot menu

Shout-Out

User Tag List

Page 4 of 66 FirstFirst 1234567854 ... LastLast
Results 46 to 60 of 976
  1. #46
    frizky'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)
    Code:
        <add key="TransferType" value="cp"/><!--cp/leaveStrongest/duplicate/all  cp with 0 threshold trasnfers nothing. 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"/>
    So basically, there are several types of transfer:
    >cp
    >leaveStrongest
    >duplicate
    >all

    If you choose cp, then you should set the cp treshold in TransferCPThreshold. Cheers.

    Necronomicon's Version of FeroxRev's Bot
  2. #47
    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 megachimeraaa View Post
    whi i get retry request error?please can tell me how to fix it?please sir thank you
    PokemonGo server down

  3. #48
    Kapsel498's Avatar Banned
    Reputation
    3
    Join Date
    Mar 2011
    Posts
    24
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I believe there is no real auto-updater, since it's redirecting us to your github, right? I think you should change system.console text for something more appropriate than "Downloading...", like "Redirecting to Github/download page"?

  4. #49
    Skara's Avatar Member
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    12
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I try to clarify some questions here:

    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.
    Read the "readme.md" that's provived.
    Code:
    public string TransferType => GetSetting() != string.Empty ? GetSetting() : "none";
    Replace "none" with the wished option.

    Originally Posted by explosive82 View Post
    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
    Go to Program.cs and add the pokemon to
    Code:
    var unwantedPokemonTypes = new[]
                {
                    PokemonId.Pidgey,
                    PokemonId.Rattata,
                    PokemonId.Weedle,
                    PokemonId.Zubat,
                    PokemonId.Caterpie,
                    PokemonId.Pidgeotto,
                    PokemonId.NidoranFemale,
                    PokemonId.Paras,
                    PokemonId.Venonat,
                    PokemonId.Psyduck,
                    PokemonId.Poliwag,
                    PokemonId.Slowpoke,
                    PokemonId.Drowzee,
                    PokemonId.Gastly,
                    PokemonId.Goldeen,
                    PokemonId.Staryu,
                    PokemonId.Magikarp,
                    PokemonId.Eevee,
                    PokemonId.Dratini
                };
    Originally Posted by winterfall500 View Post
    is it normal that i'm gettin retry request right now? im using google
    Yes.

    Originally Posted by soujiro707 View Post
    does this bypass the need to enter the google device code every 30 minutes?
    It should automatically do this.

    Originally Posted by cedricdu94 View Post
    Same question
    Look at my answer above.

    Originally Posted by avin29 View Post
    this is server PROBLEM this error google account Screenshot by Lightshot ???
    Server Error.
    Last edited by Skara; 07-20-2016 at 06:38 PM.

  5. Thanks Deedaa (1 members gave Thanks to Skara for this useful post)
  6. #50
    american_derp's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    3
    Thanks G/R
    10/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For those who were on the other bot using the auto transfer trash pokemon list here is that list updated for this bot that will SAVE Pidgey/Weedle/Caterpie for auto evolution so you can activate them later all at once for lucky egg max xp

    PokemonId.Rattata,
    PokemonId.Zubat,
    PokemonId.Pidgeotto,
    PokemonId.Paras,
    PokemonId.Venonat,
    PokemonId.Psyduck,
    PokemonId.Poliwag,
    PokemonId.Slowpoke,
    PokemonId.Drowzee,
    PokemonId.Gastly,
    PokemonId.Goldeen,
    PokemonId.Staryu,
    PokemonId.Magikarp,
    PokemonId.Dratini,
    PokemonId.Voltorb,
    PokemonId.Magnemite,
    PokemonId.Sandshrew,
    PokemonId.Abra,
    PokemonId.Machop,
    PokemonId.Bellsprout,
    PokemonId.Tentacool,
    PokemonId.Doduo,
    PokemonId.Shellder,
    PokemonId.Krabby,
    PokemonId.Exeggcute,
    PokemonId.Pinsir,


    replace with the existing ones in your Program.cs
    Last edited by american_derp; 07-20-2016 at 06:38 PM. Reason: I noticed I had copied it wrong

  7. #51
    vosszaa's Avatar Member
    Reputation
    4
    Join Date
    Jul 2012
    Posts
    80
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do we still need to auth every 30 mins with this bot still?

  8. #52
    ptmazkirut's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    89
    Thanks G/R
    3/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vosszaa View Post
    Do we still need to auth every 30 mins with this bot still?
    I don't think we need to auth every 30 min again

  9. #53
    MissLL's Avatar Member
    Reputation
    3
    Join Date
    Oct 2013
    Posts
    32
    Thanks G/R
    10/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sucks I run vista so I can't use visual studios 2015 :shh:

  10. #54
    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)
    Thanks alot for doing this nom also pokemon go servers pls

  11. #55
    Deedaa's Avatar Member
    Reputation
    3
    Join Date
    Dec 2013
    Posts
    42
    Thanks G/R
    22/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vosszaa View Post
    do we still need to auth every 30 mins with this bot still?
    read!!!!!!

  12. #56
    melzar's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    14
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vosszaa View Post
    Do we still need to auth every 30 mins with this bot still?
    No. No auth every 30 mins as far as I know.

  13. #57
    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)
    fix its?

    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

  14. #58
    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 akuros123 View Post
    fix its?

    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

    what's the problem here? you should do what it says, but right now the servers are still broken

  15. #59
    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)
    After 100 try the APP crash how fix please ?

  16. #60
    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)
    Once again, settings and transfer types were changed and are explained in the readme. Settings are in PokemonGo\RocketAPI\Console\App.config

    Transfer Types:
    none - disables transferring
    cp - transfers all pokemon below the CP threshold in the app.config, EXCEPT for those types specified in program.cs
    leaveStrongest - transfers all but the highest CP pokemon of each type SPECIFIED IN program.cs (those that aren't specified are untouched)
    duplicate - same as above but for all pokemon (no need to specify type)
    all - transfers all pokemon

    I imagine most people would use duplicate because it leaves the highest CP pokemon of each type without fiddling with the filter in program.cs

  17. Thanks Deedaa (1 members gave Thanks to hardell for this useful post)
Page 4 of 66 FirstFirst 1234567854 ... 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 10:03 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