Necronomicon's Version of FeroxRev's Bot menu

Shout-Out

User Tag List

Page 33 of 66 FirstFirst ... 293031323334353637 ... LastLast
Results 481 to 495 of 976
  1. #481
    TastyPxssy's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can somebody try to login with Nox?
    I botted from 1-20 since yesterday, today I want to see the Account in real. All pokes and items are there, but you see nothing on the maps, no stops, gyms, pokes... the bot works fine, because of that I think its a fault on my end. I have the newest version from GO and started at the same place where I botted.

    Necronomicon's Version of FeroxRev's Bot
  2. #482
    Malkira's Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    29
    Thanks G/R
    16/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where is the default location for this script? I logged in without setting any coords and its working?

  3. #483
    dawnera's Avatar Member
    Reputation
    4
    Join Date
    Jun 2013
    Posts
    32
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TastyPxssy View Post
    Can somebody try to login with Nox?
    I botted from 1-20 since yesterday, today I want to see the Account in real. All pokes and items are there, but you see nothing on the maps, no stops, gyms, pokes... the bot works fine, because of that I think its a fault on my end. I have the newest version from GO and started at the same place where I botted.
    Probably just the wonky servers. I can login fine with Nox when I wanna clean items, and everything is loading fine too.

  4. #484
    sed-'s Avatar ★ Elder ★
    Reputation
    1114
    Join Date
    Mar 2010
    Posts
    1,563
    Thanks G/R
    52/151
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do i fix it from getting unexpected stop every min

  5. #485
    Joverblue's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Really noob question but how do I disable google login and login through PTC?

  6. #486
    Kite-X's Avatar Member
    Reputation
    6
    Join Date
    Dec 2009
    Posts
    41
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Request:

    If Pokemon CP > 800 use Razzberry & Ultraball (If UltraballInInventory = 0 Use Greatball (if GreatballInInveotry = 0 Use Pokeball)
    if Pokemon CP > 500 use Greatball (if GreatballInInveotry = 0 Use Pokeball)
    else use Pokeball


    Something like this

  7. #487
    daastaman's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    33
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where exactly do you put the ids of the pokemon?

    I have this:

    Code:
     private static async Task EvolveAllGivenPokemons(Client client, IEnumerable<PokemonData> pokemonToEvolve)
            {
                foreach (var pokemon in pokemonToEvolve)
                {
                    /*
                    enum Holoholo.Rpc.Types.EvolvePokemonOutProto.Result {
    	                UNSET = 0;
    	                SUCCESS = 1;
    	                FAILED_POKEMON_MISSING = 2;
    	                FAILED_INSUFFICIENT_RESOURCES = 3;
    	                FAILED_POKEMON_CANNOT_EVOLVE = 4;
    	                FAILED_POKEMON_IS_DEPLOYED = 5;
                    }
                    }*/
    
                    var countOfEvolvedUnits = 0;
                    var xpCount = 0;
    
                    EvolvePokemonOut evolvePokemonOutProto;
                    do
                    {
                        evolvePokemonOutProto = await client.EvolvePokemon(pokemon.Id);
                            //todo: someone check whether this still works
    
                        if (evolvePokemonOutProto.Result == 1)
                        {
                            System.Console.WriteLine(
                                $"Evolved {pokemon.PokemonId} successfully for {evolvePokemonOutProto.ExpAwarded}xp");
    
                            countOfEvolvedUnits++;
                            xpCount += evolvePokemonOutProto.ExpAwarded;
                        }
                        else
                        {
                            var result = evolvePokemonOutProto.Result;
                            /*
                            System.Console.WriteLine($"Failed to evolve {pokemon.PokemonId}. " +
                                                     $"EvolvePokemonOutProto.Result was {result}");
    
                            System.Console.WriteLine($"Due to above error, stopping evolving {pokemon.PokemonId}");
                            */
                        }
                    } while (evolvePokemonOutProto.Result == 1);
                    if (countOfEvolvedUnits > 0)
                        System.Console.WriteLine(
                            $"Evolved {countOfEvolvedUnits} pieces of {pokemon.PokemonId} for {xpCount}xp");
    
                    await Task.Delay(3000);
                }
            }


    Originally Posted by Mew351 View Post
    Right here bud

    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.Sandslash,
                    PokemonId.Nidorino,
                    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

  8. #488
    ersenos's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    42
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I put drowzee in this list to test

    System.Console.WriteLine("[!] firing up the meat grinder");

    var doNotTransfer = new[] //these will not be transferred even when below the CP threshold
    {

    but it still transfers them out?

    Shoved another Drowzee down the meat grinder

    reason being i have 2x vaporeon i dont want them transfered!

  9. #489
    droman123's Avatar Banned
    Reputation
    5
    Join Date
    Jul 2016
    Posts
    69
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I really need some help. I dont know why but when I download it from svn I go to the app.config in microsoft visual studio but its not letting me press start without debug or ctrl f5. could someone help me out? I put in lat and l ong and ptc user and pass

  10. #490
    ersenos's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    42
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    my bad it worked!

  11. #491
    vayneprod's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it says all got away?

  12. #492
    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 wanted to have the bot (c# bots posted here) print out the character level upon login - how would I go about doing so?

  13. #493
    Malkira's Avatar Member
    Reputation
    4
    Join Date
    Jul 2016
    Posts
    29
    Thanks G/R
    16/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do I change the coordinates? Does it run according to the last set location?

  14. #494
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this implement ultimatesunrise method of walking between stops or does it teleport? I read through all 29 pages of this thread and didn't see it mentioned.

  15. #495
    k199's Avatar Member
    Reputation
    2
    Join Date
    Jul 2016
    Posts
    50
    Thanks G/R
    30/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how can i change the location , How do i Disabled evolv function , the thread need more explanation

Page 33 of 66 FirstFirst ... 293031323334353637 ... 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 10:43 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