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

User Tag List

Page 36 of 282 FirstFirst ... 32333435363738394086136 ... LastLast
Results 526 to 540 of 4221
  1. #526
    Hitsuomy's Avatar Master Sergeant
    Reputation
    14
    Join Date
    Feb 2013
    Posts
    87
    Thanks G/R
    6/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Info bar on the console now bugged? The info about my level and exp just froze since a few versions ago.

    Necrobot - sniping | egghatch | gpx | lure | incense | & more
  2. #527
    Sylencer90's Avatar Member
    Reputation
    11
    Join Date
    Dec 2013
    Posts
    91
    Thanks G/R
    60/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works like a charm as i see.

  3. #528
    JustKemikalz's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nvm got it
    Last edited by JustKemikalz; 07-22-2016 at 01:24 PM.

  4. #529
    Jesper6's Avatar Member
    Reputation
    2
    Join Date
    Sep 2012
    Posts
    47
    Thanks G/R
    1/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This happens to me after some time:

    [20:14:15] (ERROR) Exception: PokemonGo.RocketAPI.Exceptions.InvalidResponseException: Exception of type 'PokemonGo.RocketAPI.Exceptions.InvalidResponseException' was thrown.
    at PokemonGo.RocketAPI.Extensions.HttpClientExtensions.<PostProtoPayload>d__0`2.Mov eNext() in G:\BACKUP 2015\moje dokument\poe\PGO\Pokemon-Go-Bot-master2\PokemonGo.RocketAPI\Extensions\HttpClientExtensions.cs:line 22
    --- End of stack trace from previous location where exception was thrown ---
    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotificat ion(Task task)
    at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
    at PokemonGo.RocketAPI.Client.<EncounterPokemon>d__37.MoveNext() in G:\BACKUP 2015\moje dokument\poe\PGO\Pokemon-Go-Bot-master2\PokemonGo.RocketAPI\Client.cs:line 272
    --- End of stack trace from previous location where exception was thrown ---


    Bunch of other errors after that.
    Any ideas?

  5. #530
    kingdrizq's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I dont wanna scroll through 36 pages so, can you do this with a google account?

  6. Thanks vampass (1 members gave Thanks to kingdrizq for this useful post)
  7. #531
    Sylencer90's Avatar Member
    Reputation
    11
    Join Date
    Dec 2013
    Posts
    91
    Thanks G/R
    60/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kingdrizq View Post
    I dont wanna scroll through 36 pages so, can you do this with a google account?

    Yes. Doing it with my google account too.

  8. #532
    xnoregretz2u's Avatar Member
    Reputation
    2
    Join Date
    Jul 2013
    Posts
    10
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Necrobot - sniping | egghatch | gpx | lure | incense | &amp; more-okaywut-jpg

    what does this mean ?>?

  9. #533
    goditszme's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do i need to use my Lucky Egg in-game. or is there a setting that can turn it on automatically?

  10. #534
    pinn90's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    87
    Thanks G/R
    6/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone tell me why so many lines here?:
    Code:
     if (masterBallsCount > 0 && pokemonCp >= 1500)
                    return MiscEnums.Item.ITEM_MASTER_BALL;
                if (ultraBallsCount > 0 && pokemonCp >= 1500)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
                if (greatBallsCount > 0 && pokemonCp >= 1500)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
    
                if (ultraBallsCount > 0 && pokemonCp >= 1000)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
                if (greatBallsCount > 0 && pokemonCp >= 1000)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
    
                if (greatBallsCount > 0 && pokemonCp >= 700)
                    return MiscEnums.Item.ITEM_GREAT_BALL;
    
                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;
                if (masterBallsCount > 0)
                    return MiscEnums.Item.ITEM_MASTER_BALL;
    
                return MiscEnums.Item.ITEM_POKE_BALL;
    Can I delete some and leave like this, if I want to use ultra for 1500, great for 700 and normal for rest?:
    Code:
     if (masterBallsCount > 0 && pokemonCp >= 2000)
                    return MiscEnums.Item.ITEM_MASTER_BALL;
                if (ultraBallsCount > 0 && pokemonCp >= 1500)
                    return MiscEnums.Item.ITEM_ULTRA_BALL;
                if (greatBallsCount > 0 && pokemonCp >= 700)
    
                    return MiscEnums.Item.ITEM_GREAT_BALL;       
    
                return MiscEnums.Item.ITEM_POKE_BALL;
    Also, would be nice if you move pokeballs settings to settings.config. Great job btw.

  11. #535
    helimeasles's Avatar Sergeant
    Reputation
    8
    Join Date
    Jul 2016
    Posts
    38
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Someone linked a very important reddit thread before, I'm gonna post it again to make sure the devs read it.

    https://www.reddit.com/r/pokemongode...fz&sh=d9516e94

    This might mean everyone who used the bots is flagged for a ban.

  12. #536
    elzat's Avatar Member
    Reputation
    1
    Join Date
    Mar 2014
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a option for delay of how long the bot stays at each pokestop? Because sometimes pokemon take some time before appearing. Also i have a feeling that the pokecolor is faster than necro.

  13. #537
    kingdrizq's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    6
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yo how do you run the sin file

  14. #538
    ersatzdream's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    excellent work with this program. Major props to whoever was involved.

    where do we change inventory settings in visual studio?

  15. #539
    JustKemikalz's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When i try to put in the lat and lng it is giving me this error: '-37.764737' cannot be converted to an instance of type 'double'.

    Anyone any idea what that might mean?

  16. #540
    Hitsuomy's Avatar Master Sergeant
    Reputation
    14
    Join Date
    Feb 2013
    Posts
    87
    Thanks G/R
    6/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    3> PokemonGo.RocketAPI.Console -> C:\New\PokemonGo.RocketAPI.Console\bin\Debug\PokemonGo.RocketAPI.Console.exe
    ========== Build: 3 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
    Newest version, success while building but console.exe is not being created on the directory. What should I do?

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. 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 10:53 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