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

Shout-Out

User Tag List

Page 38 of 282 FirstFirst ... 34353637383940414288138 ... LastLast
Results 556 to 570 of 4221
  1. #556
    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 ersatzdream View Post
    Where do we change inventory settings?
    If by 'inventory settings' you refer to the threshold to discard the items it's in PokemonGo.RocketAPI.Console/Settings.cs under
    Code:
    public ICollection<KeyValuePair<ItemId, int>> ItemRecycleFilter
    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

    Necrobot - sniping | egghatch | gpx | lure | incense | &amp; more
  2. Thanks ersatzdream (1 members gave Thanks to spodakek for this useful post)
  3. #557
    DaiVernon's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where do i put this code?

  4. #558
    Lim-Dul's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DaiVernon View Post
    Where do i put this code?
    You don't put the code anywhere. He just explained how the variable is called within the code.

    You just edit the value in UserSettings.settings like the Readme explains (just like editing your login method and longitude/latitude).

  5. #559
    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)
    where can we change the color of the message? i dont like some of the new colors

  6. #560
    DeKnarf's Avatar Active Member
    Reputation
    26
    Join Date
    Mar 2014
    Posts
    93
    Thanks G/R
    5/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Why'd you close my issue on GitHub regarding the 90% catchrate. It's not a softban because I receive items and exp from pokestops also.
    .
    bitcoin? or gold coin?
    .

  7. #561
    Lim-Dul's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by shaichy1 View Post
    Hello everyone , I do not know anything here how to do it , please do video
    The Readme explains everything step by step:

    https://github.com/NecronomiconCodin...ster/README.md

    If you cannot follow that I don't think you should be using this particular bot.

  8. #562
    TheIEnd's Avatar Member CoreCoins Purchaser Authenticator enabled
    Reputation
    3
    Join Date
    Jan 2014
    Posts
    56
    Thanks G/R
    12/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'll give this a try in a bit

  9. #563
    DaiVernon's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I did, still doesnt work....

  10. #564
    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)
    Still having some issues with crashes after 20-30 min, not sure if server or bot.

  11. #565
    Raidmaxxx's Avatar Member
    Reputation
    8
    Join Date
    Jun 2007
    Posts
    33
    Thanks G/R
    4/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If your using PTC to login, its probably the server.

    https://go.jooas.com/

  12. #566
    Lim-Dul's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by elzat View Post
    where can we change the color of the message? i dont like some of the new colors
    katja posted the code used to color the messages on the previous page.

    http://www.ownedcore.com/forums/poke...ml#post3468327

    Just look for it in PokemonGo.RocketAPI.Console

    It's in ConsoleLogger.cs line 38-64.

    Please note that the code uses the ConsoleColor enumeration - which is sadly the only thing the Console class exposes.
    This will greatly limit your color choices as seen here:

    http://www.dotnetperls.com/console-color

    Update: I was wrong. The colors I listed above are for system events. The messages themselves are colored separately, which is hard-coded for each message - needless to say this sucks a bit.

    For example the CATCH messages are colored at line 62 of PokemonGo.RocketAPI.Logic:

    Code:
                 Logger.Write(
                        caughtPokemonResponse.Status == CatchPokemonResponse.Types.CatchStatus.CatchSuccess
                            ? $"(CATCH) {pokemon.PokemonId} with CP {encounter?.WildPokemon?.PokemonData?.Cp} ({CalculatePokemonPerfection(encounter?.WildPokemon?.PokemonData).ToString("0.00")}% perfect) and CaptureProbability: {encounter?.CaptureProbability.CaptureProbability_.First()} using a {pokeball} in {Math.Round(distance)}m distance"
                            : $"{pokemon.PokemonId} with CP {encounter?.WildPokemon?.PokemonData?.Cp} CaptureProbability: {encounter?.CaptureProbability.CaptureProbability_.First()} in {Math.Round(distance)}m distance {caughtPokemonResponse.Status} while using a {pokeball}..",
                        LogLevel.Info, ConsoleColor.DarkCyan);
    You'd have to search the code for each type of event and change the color manually. My remark about ConsoleColor still stands though.
    Last edited by Lim-Dul; 07-22-2016 at 02:37 PM.

  13. #567
    Jig666's Avatar Member
    Reputation
    3
    Join Date
    Mar 2013
    Posts
    39
    Thanks G/R
    7/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    keep your bots running if you use ptc login. their login server is very unstable atm

  14. #568
    andrerdxd's Avatar Sergeant
    Reputation
    9
    Join Date
    Jul 2016
    Posts
    61
    Thanks G/R
    33/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cant login, keep getting this error:

    Screenshot by Lightshot

  15. #569
    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)
    Just downloaded newest version. It's really slow compared to few versions ago.
    Untill now I've used version from yesterday and older version farmed 3-4 pokemons per every 1min and also few pokestops.

    Now after too many features like human walking etc. I got a lot less.
    Im using same location ofc.

    Any idea what should I change to get more exp per hour?

  16. #570
    roflt1's Avatar Banned
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by pinn90 View Post
    Just downloaded newest version. It's really slow compared to few versions ago.
    Untill now I've used version from yesterday and older version farmed 3-4 pokemons per every 1min and also few pokestops.

    Now after too many features like human walking etc. I got a lot less.
    Im using same location ofc.

    Any idea what should I change to get more exp per hour?
    Same here, regardless of the 50km/h speed that I put.

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 05:49 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