-
Member
Code:
<add key="TransferType" value="cp"/><!--cp/leaveStrongest/duplicate/all cp with 0 threshold trasnfers nothing. Whitelists/blackslists for each type is in Program.cs-->
<add key="TransferCPThreshold" value="0"/><!--transfer pokemon with CP less than this value if cp transfer type is selected. Whitelist in Program.cs-->
<add key="EvolveAllGivenPokemons" value="false"/>
So basically, there are several types of transfer:
>cp
>leaveStrongest
>duplicate
>all
If you choose cp, then you should set the cp treshold in TransferCPThreshold. Cheers.
-
Originally Posted by
megachimeraaa
whi i get retry request error?please can tell me how to fix it?please sir thank you
PokemonGo server down
-
Banned
I believe there is no real auto-updater, since it's redirecting us to your github, right? I think you should change system.console text for something more appropriate than "Downloading...", like "Redirecting to Github/download page"?
-
Member
I try to clarify some questions here:
Originally Posted by
nav4321
You seem to have changed the function of settings.cs, previously was much easier to understand.
how do we make it choose highest cp pokemon and transfer crappy pokemon?
Thanks and sorry for the repetitive question.
Read the "readme.md" that's provived.
Code:
public string TransferType => GetSetting() != string.Empty ? GetSetting() : "none";
Replace "none" with the wished option.
Originally Posted by
explosive82
How do i add pokemon to the transfer list? I see that i can edit it but how do i put like the ID with it or w/e
Go to Program.cs and add the pokemon to
Code:
var unwantedPokemonTypes = new[]
{
PokemonId.Pidgey,
PokemonId.Rattata,
PokemonId.Weedle,
PokemonId.Zubat,
PokemonId.Caterpie,
PokemonId.Pidgeotto,
PokemonId.NidoranFemale,
PokemonId.Paras,
PokemonId.Venonat,
PokemonId.Psyduck,
PokemonId.Poliwag,
PokemonId.Slowpoke,
PokemonId.Drowzee,
PokemonId.Gastly,
PokemonId.Goldeen,
PokemonId.Staryu,
PokemonId.Magikarp,
PokemonId.Eevee,
PokemonId.Dratini
};
Originally Posted by
winterfall500
is it normal that i'm gettin retry request right now? im using google
Yes.
Originally Posted by
soujiro707
does this bypass the need to enter the google device code every 30 minutes?
It should automatically do this.
Originally Posted by
cedricdu94
Same question
Look at my answer above.
Originally Posted by
avin29
Server Error.
Last edited by Skara; 07-20-2016 at 06:38 PM.
-
Post Thanks / Like - 1 Thanks
Deedaa (1 members gave Thanks to Skara for this useful post)
-
Member
For those who were on the other bot using the auto transfer trash pokemon list here is that list updated for this bot that will SAVE Pidgey/Weedle/Caterpie for auto evolution so you can activate them later all at once for lucky egg max xp
PokemonId.Rattata,
PokemonId.Zubat,
PokemonId.Pidgeotto,
PokemonId.Paras,
PokemonId.Venonat,
PokemonId.Psyduck,
PokemonId.Poliwag,
PokemonId.Slowpoke,
PokemonId.Drowzee,
PokemonId.Gastly,
PokemonId.Goldeen,
PokemonId.Staryu,
PokemonId.Magikarp,
PokemonId.Dratini,
PokemonId.Voltorb,
PokemonId.Magnemite,
PokemonId.Sandshrew,
PokemonId.Abra,
PokemonId.Machop,
PokemonId.Bellsprout,
PokemonId.Tentacool,
PokemonId.Doduo,
PokemonId.Shellder,
PokemonId.Krabby,
PokemonId.Exeggcute,
PokemonId.Pinsir,
replace with the existing ones in your Program.cs
Last edited by american_derp; 07-20-2016 at 06:38 PM.
Reason: I noticed I had copied it wrong
-
Member
Do we still need to auth every 30 mins with this bot still?
-
Member
Originally Posted by
vosszaa
Do we still need to auth every 30 mins with this bot still?
I don't think we need to auth every 30 min again
-
Member
Sucks I run vista so I can't use visual studios 2015 :shh:
-
Member
Thanks alot for doing this nom also pokemon go servers pls
-
Member
Originally Posted by
vosszaa
do we still need to auth every 30 mins with this bot still?
read!!!!!!
-
Member
Originally Posted by
vosszaa
Do we still need to auth every 30 mins with this bot still?
No. No auth every 30 mins as far as I know.
-
Member
fix its?
Coded by Ferox - edited by NecronomiconCoding Awesome! You have already got the newest version! Please visit https://www.google.com/device and enter PTKY-YPTJ
-
Member
Originally Posted by
akuros123
fix its?
Coded by Ferox - edited by NecronomiconCoding Awesome! You have already got the newest version! Please visit
https://www.google.com/device and enter PTKY-YPTJ
what's the problem here? you should do what it says, but right now the servers are still broken
-
Member
After 100 try the APP crash how fix please ?
-
Member
Once again, settings and transfer types were changed and are explained in the readme. Settings are in PokemonGo\RocketAPI\Console\App.config
Transfer Types:
none - disables transferring
cp - transfers all pokemon below the CP threshold in the app.config, EXCEPT for those types specified in program.cs
leaveStrongest - transfers all but the highest CP pokemon of each type SPECIFIED IN program.cs (those that aren't specified are untouched)
duplicate - same as above but for all pokemon (no need to specify type)
all - transfers all pokemon
I imagine most people would use duplicate because it leaves the highest CP pokemon of each type without fiddling with the filter in program.cs
-
Post Thanks / Like - 1 Thanks
Deedaa (1 members gave Thanks to hardell for this useful post)