Necrobot - sniping | egghatch | gpx | lure | incense | & more menu

User Tag List

Page 97 of 282 FirstFirst ... 4793949596979899100101147197 ... LastLast
Results 1,441 to 1,455 of 4221
  1. #1441
    deadmouz's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    9
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you want to use the old recycle code, just edit the settings.cs new code at line 44

    Code:
            public ICollection<KeyValuePair<ItemId, int>> ItemRecycleFilter
            {
    
                get
                {
                    //Type of pokemons to evolve
                    var defaultItems = new List<KeyValuePair<ItemId, int>> {
                        new KeyValuePair<ItemId, int>(ItemId.ItemUnknown, 0),
                new KeyValuePair<ItemId, int>(ItemId.ItemPokeBall, 25),
                new KeyValuePair<ItemId, int>(ItemId.ItemGreatBall, 50),
                new KeyValuePair<ItemId, int>(ItemId.ItemUltraBall, 75),
                new KeyValuePair<ItemId, int>(ItemId.ItemMasterBall, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemPotion, 0),
                new KeyValuePair<ItemId, int>(ItemId.ItemSuperPotion, 25),
                new KeyValuePair<ItemId, int>(ItemId.ItemHyperPotion, 50),
                new KeyValuePair<ItemId, int>(ItemId.ItemMaxPotion, 75),
                new KeyValuePair<ItemId, int>(ItemId.ItemRevive, 25),
                new KeyValuePair<ItemId, int>(ItemId.ItemMaxRevive, 50),
                new KeyValuePair<ItemId, int>(ItemId.ItemLuckyEgg, 200),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncenseOrdinary, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncenseSpicy, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncenseCool, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncenseFloral, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemTroyDisk, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemXAttack, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemXDefense, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemXMiracle, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemRazzBerry, 50),
                new KeyValuePair<ItemId, int>(ItemId.ItemBlukBerry, 10),
                new KeyValuePair<ItemId, int>(ItemId.ItemNanabBerry, 10),
                new KeyValuePair<ItemId, int>(ItemId.ItemWeparBerry, 30),
                new KeyValuePair<ItemId, int>(ItemId.ItemPinapBerry, 30),
                new KeyValuePair<ItemId, int>(ItemId.ItemSpecialCamera, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncubatorBasicUnlimited, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncubatorBasic, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemPokemonStorageUpgrade, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemItemStorageUpgrade, 100)
                    };
                    _itemRecycleFilter = _itemRecycleFilter ?? LoadItemList("Configs\\ConfigItemList.ini", defaultItems);
                    return _itemRecycleFilter;
                }
    
    
            }
    with old code
    Code:
            public ICollection<KeyValuePair<ItemId, int>> ItemRecycleFilter => new[]
             {
                new KeyValuePair<ItemId, int>(ItemId.ItemUnknown, 0),
                new KeyValuePair<ItemId, int>(ItemId.ItemPokeBall, 20),
                new KeyValuePair<ItemId, int>(ItemId.ItemGreatBall, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemUltraBall, 200),
                new KeyValuePair<ItemId, int>(ItemId.ItemMasterBall, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemPotion, 0),
                new KeyValuePair<ItemId, int>(ItemId.ItemSuperPotion, 0),
                new KeyValuePair<ItemId, int>(ItemId.ItemHyperPotion, 20),
                new KeyValuePair<ItemId, int>(ItemId.ItemMaxPotion, 30),
                new KeyValuePair<ItemId, int>(ItemId.ItemRevive, 10),
                new KeyValuePair<ItemId, int>(ItemId.ItemMaxRevive, 50),
                new KeyValuePair<ItemId, int>(ItemId.ItemLuckyEgg, 200),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncenseOrdinary, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncenseSpicy, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncenseCool, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncenseFloral, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemTroyDisk, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemXAttack, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemXDefense, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemXMiracle, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemRazzBerry, 20),
                new KeyValuePair<ItemId, int>(ItemId.ItemBlukBerry, 10),
                new KeyValuePair<ItemId, int>(ItemId.ItemNanabBerry, 10),
                new KeyValuePair<ItemId, int>(ItemId.ItemWeparBerry, 30),
                new KeyValuePair<ItemId, int>(ItemId.ItemPinapBerry, 30),
                new KeyValuePair<ItemId, int>(ItemId.ItemSpecialCamera, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncubatorBasicUnlimited, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemIncubatorBasic, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemPokemonStorageUpgrade, 100),
                new KeyValuePair<ItemId, int>(ItemId.ItemItemStorageUpgrade, 100)
            };
    of course, change the number with your settings

    Necrobot - sniping | egghatch | gpx | lure | incense | &amp; more
  2. #1442
    ELSN's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just want to thank you for your great work this bot really helped me out a lot

  3. #1443
    AifEizzh's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    help meNecrobot - sniping | egghatch | gpx | lure | incense | &amp; more-screenshot_1-jpg

  4. #1444
    nexty5870's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    23
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey guys,

    just wondering what you guys use as setting in terms of speed to avoid to be soft ban

    mine are still default 50km, and the default travel distance to 1000 (shall I change this to be bigger ?)

    also what your IV %

    I love this bot and already made a donation to keep up the good work!

  5. #1445
    klurosu's Avatar Member
    Reputation
    6
    Join Date
    Feb 2009
    Posts
    6
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SylverrFoxx View Post
    Recycling is completely broken after the last update.
    Originally Posted by deadmouz View Post
    If you want to use the old recycle code, just edit the settings.cs new code at line 44
    (...)

    of course, change the number with your settings
    http://www.ownedcore.com/forums/poke...ml#post3474799

  6. #1446
    derpydust's Avatar Member
    Reputation
    1
    Join Date
    Oct 2015
    Posts
    17
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, Thanks for the bot its awesome!

    Just wondering if there is an option to just hatch eggs?
    Or hatch eggs in general cus now it seems it dosnt hatch any

  7. #1447
    yebakaka's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    GPX path working good, but recycling is dead and also i cant see files ( not to catch, to keep and to evolve)

  8. #1448
    klurosu's Avatar Member
    Reputation
    6
    Join Date
    Feb 2009
    Posts
    6
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yebakaka View Post
    GPX path working good, but recycling is dead and also i cant see files ( not to catch, to keep and to evolve)
    http://www.ownedcore.com/forums/poke...ml#post3474799

    and now those files are .ini files into Configs folder

  9. #1449
    KingStone's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New version cannot give code google. Please help !

  10. #1450
    yopilax's Avatar Member
    Reputation
    8
    Join Date
    Aug 2008
    Posts
    64
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Earlier tonight, the bot stopped signing on to the google account. It uses auth but does not log into the game with it. Instead it fabricates a new character and tries to farm.

    Any new version I download does this as well. Is there something I can delete or reset?
    The mob "Jesus" was only on PTR. It never hit the real world servers and sure as hell won't RESPAWN. For some reason though, people still camp it.:confused:

  11. #1451
    iHackzor's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do i set leaveStrongest only and keep certain %IV and transfer below certain %IV

  12. #1452
    jakito's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by klurosu View Post
    just edit "Settings.cs" line 117:

    if (Int32.TryParse(itemInfoArray.Length > 1 ? itemInfoArray[1] : "100", out itemAmount)) itemAmount = 100;

    And MUST be like this:

    if (!Int32.TryParse(itemInfoArray.Length > 1 ? itemInfoArray[1] : "100", out itemAmount)) itemAmount = 100;
    Just created my account to thank you...you just fixed the recycling problem

    Btw, do someone have something for the evolve problem? I would like to evolve certain pokemons, not all of them, but can't find the place to edit it, or to activate it
    Last edited by jakito; 07-25-2016 at 05:50 AM.

  13. #1453
    yopilax's Avatar Member
    Reputation
    8
    Join Date
    Aug 2008
    Posts
    64
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a cache file for visual studios or a way to start a job with a clean slate? this is broken like this.
    The mob "Jesus" was only on PTR. It never hit the real world servers and sure as hell won't RESPAWN. For some reason though, people still camp it.:confused:

  14. #1454
    BuloZB's Avatar Active Member
    Reputation
    20
    Join Date
    Nov 2008
    Posts
    263
    Thanks G/R
    26/4
    Trade Feedback
    17 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    newest updated recycle works for me http://puu.sh/qdJdT/41e4bf1ba6.png

  15. #1455
    Moutain Dew'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)
    can you please post a new discord link? the current one is expired. ty.

    edit : or send me a pm with an invite....thanks alot
    Last edited by Moutain Dew; 07-25-2016 at 06:11 AM.

Similar Threads

  1. Necrobot & Sniping problem.
    By victornoleto in forum Pokemon GO Hacks|Cheats
    Replies: 5
    Last Post: 08-26-2016, 05:54 AM
  2. [Release] PokeMobBot - sniping | egghatch | gpx | lure | incense | & more
    By DurtyFree in forum Pokemon GO Hacks|Cheats
    Replies: 175
    Last Post: 07-31-2016, 03:16 PM
  3. [Release] [»»] NecroBOT Discord Channel (Live) [««] (Pokemon coordinates, support & more!)
    By LennoxAli in forum Pokemon GO Hacks|Cheats
    Replies: 2
    Last Post: 07-31-2016, 11:48 AM
  4. [Release] Necrobot.io - sniping | egghatch | gpx | lure | incense | & more
    By nonm in forum Pokemon GO Hacks|Cheats
    Replies: 43
    Last Post: 07-31-2016, 11:43 AM
  5. [Question] Necrobot sniping
    By xswayer in forum Pokemon GO Chat
    Replies: 1
    Last Post: 07-31-2016, 10:25 AM
All times are GMT -5. The time now is 06:44 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