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

Shout-Out

User Tag List

Page 65 of 282 FirstFirst ... 15616263646566676869115165 ... LastLast
Results 961 to 975 of 4221
  1. #961
    sHoveToMe's Avatar Member
    Reputation
    12
    Join Date
    Mar 2009
    Posts
    198
    Thanks G/R
    2/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the bot isnt doing any pokestop anymore, its the newest version

    Necrobot - sniping | egghatch | gpx | lure | incense | & more
  2. #962
    xoreyo's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spockmster View Post
    Can someone pls tell me how to bot in 2 google accounts??
    Sorry if its already answered but cant find it in 61 pages
    Just create 2 bots using another refresh token?...


    Originally Posted by sHoveToMe View Post
    the bot isnt doing any pokestop anymore, its the newest version

    Cant confirm. Compiled new version 2 minutes ago. Doing all fine.

  3. #963
    haunter90's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I get errors with the latest version @ compiling: Severity Code Description X:\Pokemon-Go-Bot-master \Pokemon-Go-Bot-master\PokemonGo.RocketAPI.Logic\bin\Release\PokemonGo.RocketAPI.Logic.dll' could not be found PokemonGo.RocketAPI.Console X:Pokemon-Go-Bot-master\Pokemon-Go-Bot-master\PokemonGo.RocketAPI.Console\CSC 1 Active
    Severity Code Description Project File Line Suppression State
    Error CS0012 The type 'RepeatedField<>' is defined in an assembly that is not referenced. You must add a reference to assembly 'Google.Protobuf, Version=3.0.0.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604'. PokemonGo.RocketAPI.Logic X:\Pokemon-Go-Bot-master\Pokemon-Go-Bot-master\PokemonGo.RocketAPI.Logic\Inventory.cs 111 Active

  4. #964
    Devolkoff's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MonsterMMORPG View Post
    i am hitting 64k exp per hour right now in my city Mersin, Turkey

    cord plz? i spoof to that place but didn't see anything but 1 gym :confused:
    Last edited by Devolkoff; 07-23-2016 at 08:41 AM.

  5. #965
    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)
    How can i check the %% of perfect of my all pokemons? is there any script or program?

  6. #966
    aiTMaster's Avatar Member
    Reputation
    14
    Join Date
    Jul 2009
    Posts
    165
    Thanks G/R
    9/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spockmster View Post
    Can someone pls tell me how to bot in 2 google accounts??
    Sorry if its already answered but cant find it in 61 pages
    make 2 different bots
    compile it 2times with the different google acc data

  7. #967
    xoreyo's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    11
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yebakaka View Post
    How can i check the %% of perfect of my all pokemons? is there any script or program?
    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;

  8. #968
    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)
    Anyone else's bot not recycling items in the newest version?

  9. #969
    sHoveToMe's Avatar Member
    Reputation
    12
    Join Date
    Mar 2009
    Posts
    198
    Thanks G/R
    2/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    why is there even a option to enter the position in the usersettings if it gets ignored because of that stupid coords.txt ?

    i entered LA coords and it ported me to amsterdam.. awesome

  10. #970
    randomusername69's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    30
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by helimeasles View Post
    Anyone else's bot not recycling items in the newest version?
    yup just compiled last version and it isnt deleting extra items

  11. #971
    imfap247's Avatar Member
    Reputation
    8
    Join Date
    Jan 2014
    Posts
    37
    Thanks G/R
    4/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    In this version I had to remove Blastoise, Alakazam, and Mr. Mine from the PokemonsToKeep because they kept giving an error. Works normally when those three are not on the list. Is there something I am missing that is not recognizing those pokemon?

  12. #972
    spockmster'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 aiTMaster View Post
    make 2 different bots
    compile it 2times with the different google acc data
    thanks mate i did that.
    But now i get on my second google account following erroer
    [15:55:35] (ERROR) Unhandled exception: System.AggregateException:

    someone got an idea to fix that?

  13. #973
    rejoin's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    20
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by helimeasles View Post
    Anyone else's bot not recycling items in the newest version?
    Yes same for me

  14. #974
    marcodt's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi all I've been lurking the forums for quite a while and I wanted to know if anyone can address this.
    I used Felix/ferex? (Can't remember the name) bot a couple of nights ago and went from 2-21 in one night.. that bot went down the next day and now I'm using this one and went only from 5-10 overnight on a new account.. any ideas how I can speed this up? Chances are we're probably gonna get banned so I would like to attempt to speed it up. Thanks.

  15. #975
    killerfromsky's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jul 2016
    Posts
    108
    Thanks G/R
    4/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this bot prioritise pokestops with lure over those without a lure?

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 04:06 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