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

Shout-Out

User Tag List

Page 74 of 282 FirstFirst ... 24707172737475767778124174 ... LastLast
Results 1,096 to 1,110 of 4221
  1. #1096
    Thelulz1's Avatar Member
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    bot is keeping my pinsirs... why?

    Necrobot - sniping | egghatch | gpx | lure | incense | & more
  2. #1097
    Synimate'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)
    I also feel like the transfer isn't working really well for me. I don't know why. I set the CP to 425 and IV percentage to 90%. Yet it doesn't seem to want to transfer everything else.

  3. #1098
    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)
    But i dont know how to use that :/ i would like to see % of all my pokemons, not only with the best cp and %

    Originally Posted by yebakaka View Post
    How can i check the %% of perfect of my all pokemons? is there any script or program?

    Originally Posted by xoreyo View Post
    PokemonInfo.cs Line 25

    Code:
       public static class PokemonInfo
        {
            public static double CalculatePokemonPerfection(PokemonData poke)
            {
                if (poke.CpMultiplier + poke.AdditionalCpMultiplier == 0)
                    return (poke.IndividualAttack * 2 + poke.IndividualDefense + poke.IndividualStamina) / (4.0 * 15.0) * 100.0;
    
                BaseStats baseStats = GetBaseStats(poke.PokemonId);
                var max_cp = CalculateMaxCPMultiplier(poke);
                var min_cp = CalculateMinCPMultiplier(poke);
                var cur_cp = CalculateCPMultiplier(poke);
    
                return ((cur_cp - min_cp) / (max_cp - min_cp)) * 100.0;
            }
    
            public static double CalculateMaxCPMultiplier(PokemonData poke)
            {
                BaseStats baseStats = GetBaseStats(poke.PokemonId);
                return (baseStats.BaseAttack + 15) * Math.Sqrt(baseStats.BaseDefense + 15) * Math.Sqrt(baseStats.BaseStamina + 15);
            }
            public static double CalculateMinCPMultiplier(PokemonData poke)
            {
                BaseStats baseStats = GetBaseStats(poke.PokemonId);
                return (baseStats.BaseAttack) * Math.Sqrt(baseStats.BaseDefense) * Math.Sqrt(baseStats.BaseStamina);
            }
            public static double CalculateCPMultiplier(PokemonData poke)
            {
                BaseStats baseStats = GetBaseStats(poke.PokemonId);
                return (baseStats.BaseAttack + poke.IndividualAttack) * Math.Sqrt(baseStats.BaseDefense + poke.IndividualDefense) * Math.Sqrt(baseStats.BaseStamina + poke.IndividualStamina);
            }
    
            public static int CalculateMaxCP(PokemonData poke)
            {
                return Math.Max((int)Math.Floor(0.1 * CalculateMaxCPMultiplier(poke) * Math.Pow(poke.CpMultiplier + poke.AdditionalCpMultiplier, 2)), 10);
            }
            public static int CalculateMinCP(PokemonData poke)
            {
                return Math.Max((int)Math.Floor(0.1 * CalculateMinCPMultiplier(poke) * Math.Pow(poke.CpMultiplier + poke.AdditionalCpMultiplier, 2)), 10);
            }
            public static int CalculateCP(PokemonData poke)
            {
                return Math.Max((int)Math.Floor(0.1 * CalculateCPMultiplier(poke) * Math.Pow(poke.CpMultiplier + poke.AdditionalCpMultiplier, 2)), 10);
            }

    Mostly:
    Code:
                return ((cur_cp - min_cp) / (max_cp - min_cp)) * 100.0;
    Last edited by yebakaka; 07-23-2016 at 01:59 PM.

  4. #1099
    TheEnglishGuy's Avatar Active Member
    Reputation
    16
    Join Date
    Jan 2011
    Posts
    197
    Thanks G/R
    20/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guys, any tips on how to make the bot earn even more XP/hr?

    The default settings are: -Walking speed 50km/h -Delay between pokemon catch 5000 (5 seconds)

    So what should I change these to, and are there more options to change to make the bot earn even more XP?

  5. #1100
    ParaStatic's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    32
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheEnglishGuy View Post
    Guys, any tips on how to make the bot earn even more XP/hr?

    The default settings are: -Walking speed 50km/h -Delay between pokemon catch 5000 (5 seconds)

    So what should I change these to, and are there more options to change to make the bot earn even more XP?
    Cannot help for more xp per hour, but just posting to say I lowered the walking speed down to 10 on some and 9 on other. That is the pace of sprint walking, this bot is mostly used to be more human like. If you want a fast exp per hour I suggest pokecolor.

  6. #1101
    TheEnglishGuy's Avatar Active Member
    Reputation
    16
    Join Date
    Jan 2011
    Posts
    197
    Thanks G/R
    20/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ParaStatic View Post
    Cannot help for more xp per hour, but just posting to say I lowered the walking speed down to 10 on some and 9 on other. That is the pace of sprint walking, this bot is mostly used to be more human like. If you want a fast exp per hour I suggest pokecolor.
    What makes Pokecolor so much faster than this one?
    Last edited by TheEnglishGuy; 07-23-2016 at 02:10 PM.

  7. #1102
    Kerotos's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by VaanC View Post
    Refresh token is saved here: C:\Users\YourName\AppData\Local\PokemonGo

    Thats why you don't see any in concole. Bot use it atomatically now.
    Do i have to download something new or how does it use it automatically?

    i check know AppData/Pokemon GO i found this there:

    http://www.bilder-upload.eu/show.php...1469301531.png

    Do i have to copy paste this in the google refresh token line from the settings and how is it with update do i need some updates sometimes or is it updated already?
    Last edited by Kerotos; 07-23-2016 at 02:18 PM.

  8. #1103
    Trip_Machine's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Thelulz1 View Post
    bot is keeping my pinsirs... why?
    Same here. Thought my settings might have been messed up, but nope.. just loves Pinsir for some reason. Anyone know of a fix? I still want to keep the highest CP Pinsir, not trade them all.

  9. #1104
    The_Imp's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Oct 2013
    Posts
    52
    Thanks G/R
    9/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Set <KeepMinCP>1400</KeepMinCP> to this

  10. #1105
    ParaStatic's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    32
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TheEnglishGuy View Post
    What makes Pokecolor so much faster than this one?
    It does things faster. Simple as that.

  11. #1106
    skillorsdj2's Avatar Member
    Reputation
    1
    Join Date
    Mar 2016
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeh Pokecolor sems like 150% faster on everything :-/

  12. #1107
    skillorsdj2's Avatar Member
    Reputation
    1
    Join Date
    Mar 2016
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yebakaka View Post
    But i dont know how to use that :/ i would like to see % of all my pokemons, not only with the best cp and %
    me neither :-/

  13. #1108
    TheEnglishGuy's Avatar Active Member
    Reputation
    16
    Join Date
    Jan 2011
    Posts
    197
    Thanks G/R
    20/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by skillorsdj2 View Post
    Yeh Pokecolor sems like 150% faster on everything :-/
    And with pokestop you keep the PokeStopdelay at 15000 or less?

  14. #1109
    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)
    bot is keeping my pinsirs... why?
    +1 BUG!
    Where transfer configs?

  15. #1110
    Awlter's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ParaStatic View Post
    It does things faster. Simple as that.
    how can i make this bot similar in speed? this one is the only one that seems to restart without problems when using ptc

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 10:44 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