Change the following in Logic.cs
Change is in bold. You can change the 600 value to whatever you want it to beCode:private async Task TransferDuplicatePokemon() { var duplicatePokemons = await _inventory.GetDuplicatePokemonToTransfer(); foreach (var duplicatePokemon in duplicatePokemons) { var transfer = await _client.TransferPokemon(duplicatePokemon.Id); Logger.Write($"Transfer {duplicatePokemon.PokemonId} with {duplicatePokemon.Cp} CP", LogLevel.Info); await Task.Delay(300); } }
Code:private async Task TransferDuplicatePokemon() { var duplicatePokemons = await _inventory.GetDuplicatePokemonToTransfer(); foreach (var duplicatePokemon in duplicatePokemons) { if (duplicatePokemon.Cp > 600) { continue; // will skip since cp is over 600 } var transfer = await _client.TransferPokemon(duplicatePokemon.Id); Logger.Write($"Transfer {duplicatePokemon.PokemonId} with {duplicatePokemon.Cp} CP", LogLevel.Info); await Task.Delay(300); } }
Hi, i´m loving your bot, thanks for your dedicated work.
I have a question : Whats the better time for pokestop delay?, the standard 15000 ?
Good evening! I am Brazilian and I do not speak very well English.
My bot is working, but I would like to know how do I put how many CP I want to transfer each POKEMON individually and not for all 210 .
For example , I wanted to transfer it magikarp only 100 CP down, and the other with 400 CP .
THANK YOU SO MUCH!
(algum brasileiro ou português aqui?)
Anyone having the problem where the bot stops working after 1hr on the github version using google log in?
I have been running the bot using Google for hours and I have had no issues so far. However, when I use PTC it always crashes after 2hrs or so.
Here is what I found inside the minidump:
Some meta data I also found from an xml dump the crash made:User Mini Dump File: Only registers, stack and portions of memory are available
Symbol search path is: srv*
Executable search path is:
Windows 7 Version 7601 (Service Pack 1) MP (8 procs) Free x86 compatible
Product: WinNt, suite: SingleUserTS
Machine Name:
Debug session time: Thu Jul 21 22:57:31.000 2016 (UTC - 4:00)
System Uptime: 0 days 22:49:56.298
Process Uptime: 0 days 5:41:32.000
................................................................
...............
This dump file has an exception of interest stored in it.
The stored exception information can be accessed via .ecxr.
(443c.13cc): CLR exception - code e0434352 (first/second chance not available)
eax=00000000 ebx=06c1e8cc ecx=00000005 edx=00000000 esi=00000002 edi=00000000
eip=77b6016d esp=06c1e87c ebp=06c1e918 iopl=0 nv up ei pl zr na pe nc
cs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00000246
ntdll!NtWaitForMultipleObjects+0x15:
77b6016d 83c404 add esp,4
<ProblemSignatures>
<EventType>CLR20r3</EventType>
<Parameter0>PokemonGo.RocketAPI.Console.exe</Parameter0>
<Parameter1>1.2.2.0</Parameter1>
<Parameter2>5790cab6</Parameter2>
<Parameter3>Pokemon Go Rocket API</Parameter3>
<Parameter4>1.0.0.0</Parameter4>
<Parameter5>5790cab5</Parameter5>
<Parameter6>9fe</Parameter6>
<Parameter7>cd</Parameter7>
<Parameter8>System.NullReferenceException</Parameter8>
</ProblemSignatures>
Last edited by eltiti55555; 07-21-2016 at 11:53 PM.
Anyone have a Compilated version of the Bot ?
I can't DL Visual Studio
It would be cool to get items management and level viewer
Thanks again
Hanging after 5 mins of running... especially after 100 of 100 retry requests...
Hello nice to meet you all, after i follow from first page instruction and complete the settings , why there is no update after use this bot? when i checked my exp still same, and my jurnal are nothing? is there any mistakes for my cases?
Regards
oow ok.
and how to run straight and not stop every 30 minutes ?