Necronomicon's Version of FeroxRev's Bot menu

Shout-Out

User Tag List

Page 19 of 66 FirstFirst ... 151617181920212223 ... LastLast
Results 271 to 285 of 976
  1. #271
    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 xogonjai View Post
    where do u find that line?all i find is GetBestBall?
    Take note of the Kappa

    Necronomicon's Version of FeroxRev's Bot
  2. #272
    Subversion2's Avatar Contributor
    Reputation
    108
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    68/41
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xogonjai View Post
    where do u find that line?all i find is GetBestBall?
    Yeah, change "Best" to "Worst", Kappa

  3. #273
    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 Subversion2 View Post
    Yeah, change "Best" to "Worst", Kappa
    He's going to take your word for it LUL

  4. #274
    entengboi's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    20
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone know if having full inventory still catch and get exp?

  5. #275
    Warrez's Avatar Member
    Reputation
    2
    Join Date
    Jun 2008
    Posts
    19
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    in program.cs find function "ExecuteFarmingPokestopsAndPokemons(Client client)" and replace the whole function with this

    Code:
            private static async Task ExecuteFarmingPokestopsAndPokemons(Client client)
            {
                var mapObjects = await client.GetMapObjects();
    
                var pokeStops =
                    mapObjects.MapCells.SelectMany(i => i.Forts)
                        .Where(
                            i =>
                                i.Type == FortType.Checkpoint &&
                                i.CooldownCompleteTimestampMs < DateTime.UtcNow.ToUnixTime());
    
                foreach (var pokeStop in pokeStops)
                {
                    var update = await client.UpdatePlayerLocation(pokeStop.Latitude, pokeStop.Longitude);
                    var fortInfo = await client.GetFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude);
                    var fortSearch = await client.SearchFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude);
    
                    System.Console.WriteLine(
                        $"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {fortSearch.ExperienceAwarded}, Gems: {fortSearch.GemsAwarded}, Eggs: {fortSearch.PokemonDataEgg} Items: {GetFriendlyItemsString(fortSearch.ItemsAwarded)}");
    
                    await Task.Delay(5000);
                    await TransferAllButStrongestUnwantedPokemon(client);
                    await Task.Delay(5000);
                    await ExecuteCatchAllNearbyPokemons(client);
                }
            }
    this is not a really efficient way to fix the transfer bug, but this will force the bot to transfer everytime it calls function "ExecuteFarmingPokestopsAndPokemons" which is like every single time it loops...

  6. Thanks Subversion2 (1 members gave Thanks to Warrez for this useful post)
  7. #276
    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)
    People said in this thread the 30 minute google authentication was removed with this version? mine still crashes after 30 minutes

  8. #277
    LesBelcherModz's Avatar Corporal
    Reputation
    6
    Join Date
    Jul 2016
    Posts
    30
    Thanks G/R
    6/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone help me? Using teamviewer so you can control my screen? And do i need another program to run this?

  9. #278
    DanGuerrero's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    31
    Thanks G/R
    6/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ya7es View Post
    Hey Im trying to figure out the numbers of the pokemon so I can update what stays and what goes. Care to share?. For us that know how to read and write C# a nice thing to do would be to add all pokemon to the list of transferable and then // out the ones we want to keep. Thanks!
    Code:
    PokemonId.Bulbasaur,
    //PokemonId.Ivysaur,
    //PokemonId.Venusaur,
    PokemonId.CHARMANDER,
    //PokemonId.Charmeleon,
    //PokemonId.Charizard,
    PokemonId.Squirtle,
    //PokemonId.Wartortle,
    //PokemonId.Blastoise,
    PokemonId.Caterpie,
    PokemonId.Metapod,
    PokemonId.Butterfree,
    PokemonId.Weedle,
    PokemonId.Kakuna,
    PokemonId.Beedrill,
    PokemonId.Pidgey,
    PokemonId.Pidgeotto,
    PokemonId.Pidgeot,
    PokemonId.Rattata,
    PokemonId.Raticate,
    PokemonId.Spearow,
    PokemonId.Fearow,
    PokemonId.Ekans,
    PokemonId.Arbok,
    PokemonId.Pikachu,
    PokemonId.Raichu,
    PokemonId.Sandshrew,
    PokemonId.Sandlash,
    PokemonId.NidoranFemale,
    PokemonId.Nidorina,
    PokemonId.Nidoqueen,
    PokemonId.NidoranMale,
    PokemonId.Nidorino,
    PokemonId.Nidoking,
    PokemonId.Clefairy,
    PokemonId.Clefable,
    PokemonId.Vulpix,
    PokemonId.Ninetales,
    PokemonId.Jigglypuff,
    PokemonId.Wigglytuff,
    PokemonId.Zubat,
    PokemonId.Golbat,
    PokemonId.Oddish,
    PokemonId.Gloom,
    PokemonId.Vileplume,
    PokemonId.Paras,
    PokemonId.Parasect,
    PokemonId.Venonat,
    PokemonId.Venomoth,
    PokemonId.Diglett,
    PokemonId.Dugtrio,
    PokemonId.Meowth,
    PokemonId.Persian,
    PokemonId.Psyduck,
    PokemonId.Golduck,
    PokemonId.Mankey,
    PokemonId.Primeape,
    PokemonId.Growlithe,
    PokemonId.Arcanine,
    PokemonId.Poliwag,
    PokemonId.Poliwhirl,
    PokemonId.Poliwrath,
    PokemonId.Abra,
    PokemonId.Kadabra,
    PokemonId.Alakhazam,
    PokemonId.Machop,
    PokemonId.Machoke,
    PokemonId.Machamp,
    PokemonId.Bellsprout,
    PokemonId.Weepinbell,
    PokemonId.Victreebell,
    PokemonId.Tentacool,
    PokemonId.Tentacruel,
    PokemonId.Geodude,
    PokemonId.Graveler,
    PokemonId.Golem,
    PokemonId.Ponyta,
    PokemonId.Rapidash,
    PokemonId.Slowpoke,
    PokemonId.Slowbro,
    PokemonId.Magnemite,
    PokemonId.Magneton,
    //PokemonId.Farfetch'd,
    PokemonId.Doduo,
    PokemonId.Dodrio,
    PokemonId.Seel,
    PokemonId.Dewgong,
    PokemonId.Grimer,
    PokemonId.Muk,
    PokemonId.Shellder,
    PokemonId.Cloyster,
    PokemonId.Gastly,
    PokemonId.Haunter,
    PokemonId.Gengar,
    PokemonId.Onix,
    PokemonId.Drowzee,
    PokemonId.Hypno,
    PokemonId.Krabby,
    PokemonId.Kingler,
    PokemonId.Voltorb,
    PokemonId.Electrode,
    PokemonId.Exeggcute,
    PokemonId.Exeggutor,
    PokemonId.Cubone,
    PokemonId.Marowak,
    PokemonId.Hitmonlee,
    PokemonId.Hitmonchan,
    PokemonId.Lickitung,
    PokemonId.Koffing,
    PokemonId.Weezing,
    PokemonId.Rhyhorn,
    PokemonId.Rhydon,
    PokemonId.Chansey,
    PokemonId.Tangela,
    PokemonId.Kangaskhan,
    PokemonId.Horsea,
    PokemonId.Seadra,
    PokemonId.Goldeen,
    PokemonId.Seaking,
    PokemonId.Staryu,
    PokemonId.Starmie,
    //PokemonId.Mr. Mime,
    PokemonId.Scyther,
    PokemonId.Jynx,
    PokemonId.Electabuzz,
    PokemonId.Magmar,
    PokemonId.Pinsir,
    PokemonId.Tauros,
    PokemonId.Magikarp,
    PokemonId.Gyarados,
    PokemonId.Lapras,
    PokemonId.Ditto,
    PokemonId.Eevee,
    PokemonId.Vaporeon,
    PokemonId.Jolteon,
    PokemonId.Flareon,
    PokemonId.Porygon,
    PokemonId.Omanyte,
    PokemonId.Omastar,
    PokemonId.Kabuto,
    PokemonId.Kabutops,
    PokemonId.Aerodactyl,
    //PokemonId.Snorlax,
    //PokemonId.Articuno,
    //PokemonId.Zapdos,
    //PokemonId.Moltres,
    PokemonId.Dratini,
    PokemonId.Dragonair,
    //PokemonId.Dragonite
    //PokemonId.Mewtwo,
    //PokemonId.Mew

  10. #279
    Subversion2's Avatar Contributor
    Reputation
    108
    Join Date
    Jul 2016
    Posts
    137
    Thanks G/R
    68/41
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spodakek View Post
    He's going to take your word for it LUL
    lol there's no way anyone is that thick

  11. #280
    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 Warrez View Post
    in program.cs find function "ExecuteFarmingPokestopsAndPokemons(Client client)" and replace the whole function with this

    Code:
            private static async Task ExecuteFarmingPokestopsAndPokemons(Client client)
            {
                var mapObjects = await client.GetMapObjects();
    
                var pokeStops =
                    mapObjects.MapCells.SelectMany(i => i.Forts)
                        .Where(
                            i =>
                                i.Type == FortType.Checkpoint &&
                                i.CooldownCompleteTimestampMs < DateTime.UtcNow.ToUnixTime());
    
                foreach (var pokeStop in pokeStops)
                {
                    var update = await client.UpdatePlayerLocation(pokeStop.Latitude, pokeStop.Longitude);
                    var fortInfo = await client.GetFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude);
                    var fortSearch = await client.SearchFort(pokeStop.Id, pokeStop.Latitude, pokeStop.Longitude);
    
                    System.Console.WriteLine(
                        $"[{DateTime.Now.ToString("HH:mm:ss")}] Farmed XP: {fortSearch.ExperienceAwarded}, Gems: {fortSearch.GemsAwarded}, Eggs: {fortSearch.PokemonDataEgg} Items: {GetFriendlyItemsString(fortSearch.ItemsAwarded)}");
    
                    await Task.Delay(5000);
                    await TransferAllButStrongestUnwantedPokemon(client);
                    await Task.Delay(5000);
                    await ExecuteCatchAllNearbyPokemons(client);
                }
            }
    this is not a really efficient way to fix the transfer bug, but this will force the bot to transfer everytime it calls function "ExecuteFarmingPokestopsAndPokemons" which is like every single time it loops...
    That's a nice temporary workaround minus the barrage of text which is going to slow down the program if we're using the expanded list.
    I'm guessing Necro's gonna just compare the PokemonId to match the array of unwanted pokemon and dump them (fingers crossed while waiting).

  12. #281
    balkai's Avatar Member
    Reputation
    3
    Join Date
    May 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by soujiro707 View Post
    People said in this thread the 30 minute google authentication was removed with this version? mine still crashes after 30 minutes
    ye i have the same issue

  13. #282
    Maarf's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Subversion2 View Post
    Why not? What happens?
    I managed to fix it. My bot process was reopening on the background every time that I was closing. Im dumb
    Totally forgot about this :shh:

  14. Thanks Subversion2 (1 members gave Thanks to Maarf for this useful post)
  15. #283
    Maarf's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by entengboi View Post
    anyone know if having full inventory still catch and get exp?
    It does, but since your inv is full it wont get you items

  16. #284
    Maarf's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    16
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by soujiro707 View Post
    People said in this thread the 30 minute google authentication was removed with this version? mine still crashes after 30 minutes
    use the .bat file that was shared on this topic

  17. #285
    CuteJabu's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    4
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Subversion2 View Post
    Yeah just change the line that says "Use Best Ball" to "Use Worst Ball" and you'll do fine Kappa
    There's a PR for this already.

Page 19 of 66 FirstFirst ... 151617181920212223 ... LastLast

Similar Threads

  1. [Question] Editing console output (with FeroxRev's bot)
    By Zexpeo in forum Pokemon GO Chat
    Replies: 0
    Last Post: 07-22-2016, 01:55 PM
  2. Mac OS X BG Bot version 2.0.X
    By Valmilu in forum World of Warcraft Bots and Programs
    Replies: 30
    Last Post: 02-10-2007, 11:39 AM
  3. Tool to get all Fish/bots working for EU version users! [self-made]
    By -MadMax- in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 09-08-2006, 09:02 AM
  4. [WoW Bot] WoW Glider Full Version 0.6.8
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 39
    Last Post: 05-08-2006, 12:15 AM
All times are GMT -5. The time now is 12:25 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