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

User Tag List

Page 3 of 282 FirstFirst 123456753103 ... LastLast
Results 31 to 45 of 4221
  1. #31
    Shellr57's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where is the edit new version transfer ....?

    Necrobot - sniping | egghatch | gpx | lure | incense | & more
  2. #32
    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 HPT View Post
    And where I can config delete items and Pokemon transfer ?
    PokemonGo.RocketAPI.Console/Settings.cs

    Code:
                    //Type and amount to keep
                    return new[]
                    {
                        new KeyValuePair<ItemId, int>(ItemId.ItemPokeBall, 50),
                        new KeyValuePair<ItemId, int>(ItemId.ItemGreatBall, 50)
                    };
                }
    I have yet to test it myself however.
    Facing problems with your bot? Check out this thread for possible solutions:
    https://www.ownedcore.com/forums/pokemon-go/pokemon-go-hacks-cheats/564223-compilation-common-errors-solutionss.html

  3. #33
    hellworld's Avatar Member
    Reputation
    1
    Join Date
    Nov 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spodakek View Post
    Do you have Visual Studio 2015 (Community) installed already?
    Yes, I also went to Pokemon-Go-Rocket-API-master\PokemonGo.RocketAPI.Console\App.config put ptc, my id pw, latitude and longitude just don't know what to do next..

  4. #34
    jvats's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can I use masterball for pokeball ? and Can I drop potions and revives ?

  5. #35
    dawnera's Avatar Member
    Reputation
    4
    Join Date
    Jun 2013
    Posts
    32
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dawnera View Post
    Where do I disable evolving for now? Saving up for 1 big streak with Lucky Eggs.
    Nevermind, just changed

    //Don't evolve if we can't evolve it
    if (settings.EvolutionIds.Count == 0)
    continue;

    to

    //Don't evolve if we can't evolve it
    if (settings.EvolutionIds.Count >= 0)
    continue;

  6. #36
    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 dawnera View Post
    Where do I disable evolving for now? Saving up for 1 big streak with Lucky Eggs.
    Originally Posted by iShinichi View Post
    Where can we disable Evolutions and change transfer settings?
    For those who want to temporarily disable auto evolution, go to PokemonGo.RocketAPI.Logic/Logic.cs and delete/comment-out the line in red.

    Code:
     try
                    {
                        await _client.SetServer();
                        await EvolveAllPokemonWithEnoughCandy();
                        await TransferDuplicatePokemon(true);
                        await RecycleItems();
                        await RepeatAction(10, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
    Facing problems with your bot? Check out this thread for possible solutions:
    https://www.ownedcore.com/forums/pokemon-go/pokemon-go-hacks-cheats/564223-compilation-common-errors-solutionss.html

  7. #37
    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 hellworld View Post
    Yes, I also went to Pokemon-Go-Rocket-API-master\PokemonGo.RocketAPI.Console\App.config put ptc, my id pw, latitude and longitude just don't know what to do next..
    Ctrl+F5 to build and run the sln.
    Facing problems with your bot? Check out this thread for possible solutions:
    https://www.ownedcore.com/forums/pokemon-go/pokemon-go-hacks-cheats/564223-compilation-common-errors-solutionss.html

  8. #38
    MithosNL's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Aug 2013
    Posts
    61
    Thanks G/R
    2/1
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im kinda confused with all the versions haha! This one is different again with a different App.config. Will this one evolve all pokemon and keep the strongest always? Or where do I specify it? Cuz it's not in App.config!

  9. #39
    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)
    hm I'lll hold off on this version for now. I can't figure out how to change between pokemon transfer filter types.

  10. #40
    hellworld's Avatar Member
    Reputation
    1
    Join Date
    Nov 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spodakek View Post
    Ctrl+F5 to build and run the sln.
    When i pon the sln, and do CTRL+F5 i get this error ;
    Necrobot - sniping | egghatch | gpx | lure | incense | &amp; more-qeonrtv-png

  11. #41
    BenediktW92's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    14
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hellworld View Post
    When i pon the sln, and do CTRL+F5 i get this error ;
    Necrobot - sniping | egghatch | gpx | lure | incense | &amp; more-qeonrtv-png
    You have to set PokemonGo.RocketAPI.Console *rightclick as start object first

  12. #42
    HPT's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    18
    Thanks G/R
    4/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where to config pokemon transfer ?

  13. #43
    MakingPaint's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So I've run this three times so far. I had to restart the bot every time because it seemed like it just stopped after working after 15-20 minutes. The last thing in the prompt each time was a caught pokemon and then just silence for hours. What's going on? Everything else is amazing, btw. It's just that it keeps stopping abruptly. I may be doing something wrong but I don't see what.
    Last edited by MakingPaint; 07-21-2016 at 12:27 PM.

  14. #44
    andyt315's Avatar Member
    Reputation
    4
    Join Date
    May 2012
    Posts
    72
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where is transfer setting that you can set to certain one?

  15. #45
    ev0's Avatar ★ Elder ★ murlocs.com

    CoreCoins Purchaser Authenticator enabled
    Reputation
    1850
    Join Date
    Jul 2012
    Posts
    2,737
    Thanks G/R
    313/377
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    7 Thread(s)
    Originally Posted by Neer View Post
    nomn what do you say about having a thread with Devs only ? Got asked by an Admin on the site if we wanted one.
    Any other Developers that want in on this?
    Get at me with some details, I'm editing things as I go. Wouldn't mind sharing what i change
    Need a guild in the US? Visit murlocs.com

Page 3 of 282 FirstFirst 123456753103 ... LastLast

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 12:06 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search