What's new

Tutorial Automatically Catch, Farm Pokestops and Transfer Pokemon

NO GOD

NO GOD

Only Me
Seasoned Veteran Grizzled Veteran
Messages
1,892
Reaction score
756
Points
365
Sin$
0
i honestly dont know anymore. im just trying to use this one = [Click here to view this link]
in the console file, i open up the pokemongo.rocketapi.console in vs, i have hit both build and start in visual studio and get the same 2 errors.
What are the errors. I have that one working fine
 
Boar

Boar

'This Is The Way'
Mythical Veteran Stickied Platinum Record
Messages
8,114
Reaction score
6,416
Points
2,190
Sin$
7
Keeping an eye in it first its closed source virus total thows up a few flags when scanning but i suspect thats because its packed with ConfuserEx. Couple of people have posted screenshots of it working fine, anyone wanna test in VM/Sandbox?
Currently running it in sandboxie just to play it safe. So far so good.
 
breadstick

breadstick

Enthusiast
Messages
542
Reaction score
56
Points
105
Sin$
7
What are the errors. I have that one working fine
this is when trying to build and/or start the rocketapi.console in the console file
https://postimg.org/image/v4m8fbydd/

but when i start the pokemon go rocket api (the one right when you open the folder and is next to the READme), in start-up projects if i select the window version, it will start up but it doesnt seem to ever use any settings i set in the app file such as recycle items and leaving strongest pokemon only. just kept catching those duduo's
 
Last edited:
Saviorself

Saviorself

.....
Messages
2,512
Reaction score
230
Points
315
Sin$
0
this is when trying to build and/or start the rocketapi.console in the console file
https://postimg.org/image/v4m8fbydd/

but when i start the pokemon go rocket api (the one right when you open the folder and is next to the READme), in start-up projects if i select the window version, it will start up but it doesnt seem to ever use any settings i set in the app file such as recycle items and leaving strongest pokemon only. just kept catching those duduo's

I would close the program. Open up the console .sln file and run it. If the problem persists. I would just delete and configure the app all over (doesn't take long).
 
NO GOD

NO GOD

Only Me
Seasoned Veteran Grizzled Veteran
Messages
1,892
Reaction score
756
Points
365
Sin$
0
this is when trying to build and/or start the rocketapi.console in the console file
https://postimg.org/image/v4m8fbydd/

but when i start the pokemon go rocket api (the one right when you open the folder and is next to the READme), in start-up projects if i select the window version, it will start up but it doesnt seem to ever use any settings i set in the app file such as recycle items and leaving strongest pokemon only. just kept catching those duduo's

You probably have all 3 projects open when you try to build and run. That means it's trying to use the wrong project as a startup file. In the solution Explorer Panel right click the PokemonGo.RocketAPI.Console project and click "Set as StartUp Project" Then hit Ctrl + F5
 
breadstick

breadstick

Enthusiast
Messages
542
Reaction score
56
Points
105
Sin$
7
You probably have all 3 projects open when you try to build and run. That means it's trying to use the wrong project as a startup file. In the solution Explorer Panel right click the PokemonGo.RocketAPI.Console project and click "Set as StartUp Project" Then hit Ctrl + F5
LOOOOOOOOOL im so sorry guys thank you for putting up with me you are good people. when building, it gave me an error saying no definition for fearo... never put it together but i realized i didnt add the "w" when i was listing fearow in the pokemon to transfer and it was ****ing up the whole thing lololol. i guess it is the small things that matter
 
breadstick

breadstick

Enthusiast
Messages
542
Reaction score
56
Points
105
Sin$
7
....... still cant get it to transfer doduo. is anything wrong with the code? doduo is 3 from the top
Code:
private static async Task TransferAllButStrongestUnwantedPokemon(Client client)
        {
            //ColoredConsoleWrite(ConsoleColor.White, $"Firing up the meat grinder");

            var unwantedPokemonTypes = new[]
            {
                PokemonId.Pidgey,
                PokemonId.Geodude,
                PokemonId.Doduo,
                PokemonId.Abra,
                PokemonId.Kadabra,
                PokemonId.Pidgeotto,
                PokemonId.Caterpie,
                PokemonId.Metapod,
                PokemonId.Butterfree,
                PokemonId.Weedle,
                PokemonId.Kakuna,
                PokemonId.Beedrill,
                PokemonId.Raticate,
                PokemonId.Spearow,
                PokemonId.Fearow,
                PokemonId.Ekans,
                PokemonId.Arbok,
                PokemonId.Growlithe,
                PokemonId.Sandshrew,
                PokemonId.Sandlash,
                PokemonId.NidoranFemale,
                PokemonId.Nidorina,
                PokemonId.NidoranMale,
                PokemonId.Nidorino,
                PokemonId.Shellder,
                PokemonId.Zubat,
                PokemonId.Golbat,
                PokemonId.Pikachu,
                PokemonId.Goldeen,
                PokemonId.Poliwag,
                PokemonId.Poliwhirl,
                PokemonId.Bulbasaur,
                PokemonId.Horsea,
                PokemonId.Squirtle,
                PokemonId.Vulpix,
                PokemonId.Gastly,
                PokemonId.Rattata,
                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.Bellsprout,
                PokemonId.Dratini,
                PokemonId.Weepinbell,
                PokemonId.Victreebell,
                PokemonId.Tentacool,
                PokemonId.Tentacruel,
                PokemonId.Ponyta,
                PokemonId.Rapidash,
                PokemonId.Magneton,
                PokemonId.Farfetchd,
                PokemonId.Dodrio,
                PokemonId.Seel,
                PokemonId.Dewgong,
                PokemonId.Kabuto,
                PokemonId.Jigglypuff,
                PokemonId.Grimer,
                PokemonId.Ivysaur,
                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.Koffing,
                PokemonId.Weezing,
                PokemonId.Rhyhorn,
                PokemonId.Chansey,
                PokemonId.Tangela,
                PokemonId.Staryu,
                PokemonId.Starmie,
                PokemonId.MrMime,
                PokemonId.Scyther,
                PokemonId.Jynx,
                PokemonId.Electabuzz,
                PokemonId.Magmar,
                PokemonId.Pinsir,
                PokemonId.Tauros,
                PokemonId.Magikarp
            };
 
MoDzHD1

MoDzHD1

МоDzHD1™
Mr. Nice Guy Seasoned Veteran Grizzled Veteran
Messages
1,270
Reaction score
211
Points
185
Sin$
7
....... still cant get it to transfer doduo. is anything wrong with the code? doduo is 3 from the top
Code:
private static async Task TransferAllButStrongestUnwantedPokemon(Client client)
        {
            //ColoredConsoleWrite(ConsoleColor.White, $"Firing up the meat grinder");

            var unwantedPokemonTypes = new[]
            {
                PokemonId.Pidgey,
                PokemonId.Geodude,
                PokemonId.Doduo,
                PokemonId.Abra,
                PokemonId.Kadabra,
                PokemonId.Pidgeotto,
                PokemonId.Caterpie,
                PokemonId.Metapod,
                PokemonId.Butterfree,
                PokemonId.Weedle,
                PokemonId.Kakuna,
                PokemonId.Beedrill,
                PokemonId.Raticate,
                PokemonId.Spearow,
                PokemonId.Fearow,
                PokemonId.Ekans,
                PokemonId.Arbok,
                PokemonId.Growlithe,
                PokemonId.Sandshrew,
                PokemonId.Sandlash,
                PokemonId.NidoranFemale,
                PokemonId.Nidorina,
                PokemonId.NidoranMale,
                PokemonId.Nidorino,
                PokemonId.Shellder,
                PokemonId.Zubat,
                PokemonId.Golbat,
                PokemonId.Pikachu,
                PokemonId.Goldeen,
                PokemonId.Poliwag,
                PokemonId.Poliwhirl,
                PokemonId.Bulbasaur,
                PokemonId.Horsea,
                PokemonId.Squirtle,
                PokemonId.Vulpix,
                PokemonId.Gastly,
                PokemonId.Rattata,
                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.Bellsprout,
                PokemonId.Dratini,
                PokemonId.Weepinbell,
                PokemonId.Victreebell,
                PokemonId.Tentacool,
                PokemonId.Tentacruel,
                PokemonId.Ponyta,
                PokemonId.Rapidash,
                PokemonId.Magneton,
                PokemonId.Farfetchd,
                PokemonId.Dodrio,
                PokemonId.Seel,
                PokemonId.Dewgong,
                PokemonId.Kabuto,
                PokemonId.Jigglypuff,
                PokemonId.Grimer,
                PokemonId.Ivysaur,
                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.Koffing,
                PokemonId.Weezing,
                PokemonId.Rhyhorn,
                PokemonId.Chansey,
                PokemonId.Tangela,
                PokemonId.Staryu,
                PokemonId.Starmie,
                PokemonId.MrMime,
                PokemonId.Scyther,
                PokemonId.Jynx,
                PokemonId.Electabuzz,
                PokemonId.Magmar,
                PokemonId.Pinsir,
                PokemonId.Tauros,
                PokemonId.Magikarp
            };
set the transfer type to duplicate and it will remove all duplicates but keeps the strongest
 
MoDzHD1

MoDzHD1

МоDzHD1™
Mr. Nice Guy Seasoned Veteran Grizzled Veteran
Messages
1,270
Reaction score
211
Points
185
Sin$
7
so whats the difference between that and leaveStrongest?

leavestrongest is supposed to leave the strongest and duplicate is supposed to remove duplicates but duplicate will remove duplicates and leave the strongest once in place so pretty much nothing haha i had same issue as you with the exact same duduo thats how i got rid off it
 
Saviorself

Saviorself

.....
Messages
2,512
Reaction score
230
Points
315
Sin$
0
so whats the difference between that and leaveStrongest?

Idk, I left it at duplicate. Maybe "leave the strongest" will delete every Pokemon below a cp. which means it won't save atleast one of each type.
 
Top Bottom
Login
Register