-
Member
I downloaded the latest version from github, but no settings "googletoken" and the program does not device code

log file
Code:
Initializing Rocket logger @ 24.07.2016 15:36:58...
[15:36:58] Missing "\Configs\Coords.ini", using default settings for coordinates and create a new one...
[15:36:58] Awesome! You have already got the newest version! 2016.7.24.282
[15:36:58] Make sure Lat & Lng is right. Exit Program if not! Lat: 54,9848405732437 Lng: 73,3704405593342
[15:36:58] Script will continue in 15 seconds!
[15:37:03] Script will continue in 10 seconds!
[15:37:08] Script will continue in 5 seconds!
[15:37:13] Logging in via: Google
[15:37:15] Google Device Code copied to clipboard
-
Master Sergeant
Why did you go with spegeli's over necro's bot?
-
Contributor
Originally Posted by
MakingPaint
Ah nice. I'll try your version then. It seems that the other bots were prioritizing Cp over IV. Why is that? Is CP better for some reason? I can see why it would make a difference for a huge level difference, but other than that...
I would prefer IV because when you power up them, you get a much more better pokemon as a pokemon with the same CP but bader perfection^^
Originally Posted by
wiruso
I downloaded the latest version from github, but no settings "googletoken" and the program does not device code
log file
Code:
Initializing Rocket logger @ 24.07.2016 15:36:58...
[15:36:58] Missing "\Configs\Coords.ini", using default settings for coordinates and create a new one...
[15:36:58] Awesome! You have already got the newest version! 2016.7.24.282
[15:36:58] Make sure Lat & Lng is right. Exit Program if not! Lat: 54,9848405732437 Lng: 73,3704405593342
[15:36:58] Script will continue in 15 seconds!
[15:37:03] Script will continue in 10 seconds!
[15:37:08] Script will continue in 5 seconds!
[15:37:13] Logging in via: Google
[15:37:15] Google Device Code copied to clipboard
you device token should be in your clipboard and a website with the google auth field should be open automatic.
after you grant access, the refresh token will be automatic stored in Configs\Auth.ini
Last edited by Spegeli86; 07-24-2016 at 05:01 AM.
-
Post Thanks / Like - 1 Thanks
wiruso (1 members gave Thanks to Spegeli86 for this useful post)
-
Member
Originally Posted by
Spegeli86
I would prefer IV because when you power up them, you get a much more better pokemon as a pokemon with the same CP but bader perfection^^
you device token should be in your clipboard and a website with the google auth field should be open automatic.
after you grant access, the refresh token will be automatic stored in Configs\Auth.ini
Thanks, I'm stupid, programm wrote: "Google Device Code copied to clipboard"
-
Member
Originally Posted by
Spegeli86
My last Version (on Github) includes a MaxTravelDistance Option which is configurable via the UserSettings.
The Default Lat & Lng values are the center point from where he start calculation. If he goes far away then the MaxTravelDistance there is a Logic to move back to the Start Point.
And with the lateste release there is a new option called: PrioritizeIVOverCP.
For Transfer the Bot SHOULD currently to the following:
Select all Pokemon which are not marked as gym or favorite and with CP < KeepMinCP
Then check for Pokemons on the NoTransfer List
Then check for prioritizeIVoverCP, its enabled it will sort it by IV, otherwise by CP.
And then keep X amount you set via KeepMinDuplicatePokemon.
KeepMinIVPercentage = 95
KeepMinCP = 5000
TransferDuplicatePokemon = True
KeepMinDupPokemon = 0
PrioritizeIvOverCP = True
Will this config transfer all Pokemon except 95% IV? That's what I'm attempting to do.
-
Member
Hi Spegeil86,
Any chance for two additional options ?
1) To keep always all pokemon above X IV (to evolve them yourself in order to check their moves/special actions). This is what previous versions were doing. I was surprised to see all of my 90%+ IV's Magikarps and Evees go 
2) To move all the settings to external XML, instead of hardcoding them (similarly to what maclone does)
I think the community would highly appreciate it as your bot is really good.
-
Member
Originally Posted by
killerfromsky
Why did you go with spegeli's over necro's bot?
I think currently Spegs version is more updated and more features, not sure though.
-
Member
Originally Posted by
Roteak
KeepMinIVPercentage = 95
KeepMinCP = 5000
TransferDuplicatePokemon = True
KeepMinDupPokemon = 0
PrioritizeIvOverCP = True
Will this config transfer all Pokemon except 95% IV? That's what I'm attempting to do.
wtf, I dont even have like 10 pokemon over 90 IV and not a single one over 2.4k CP. What is your setup on pokemon? If I sort out everything under 95% then I would be left with 5 pokemon and those are randoms and 2 first evolutions.
-
Member
Originally Posted by
Spegeli86
I would prefer IV because when you power up them, you get a much more better pokemon as a pokemon with the same CP but bader perfection^^
you device token should be in your clipboard and a website with the google auth field should be open automatic.
after you grant access, the refresh token will be automatic stored in Configs\Auth.ini
Hi,
I think you should change priority of Min_IV_percent and Min_CP, it will help user have many options to choose.
Code:
if(percent < Min_IV_percent)
{
if(transfer_all_pokemon_with_percent_less_than_Min_IV_percent) //available input in setting
{
transfer.
}
else
{
check_Min_dupplicate.
}
}
else
{
if(CP < Min_CP)
{
if(you_want_to_keep_pokemon_with_percent_greater_than_Min_IV_percent) //available input in setting
{
do_not_transfer.
}
else
{
transfer.
}
}
else
{
Keep.
}
}
Thanks
Tuan Nguyen
-
Member
If I change to <KeepMinDuplicatePokemon>2</KeepMinDuplicatePokemon>, will it keep 2 of each pokemon and transfer the 3rd and beyond?
-
Master Sergeant
Does the latest version support max radius?
-
Where are NotTo options in new version of necro's bot/spegeli's?
-
Member
Originally Posted by
Spegeli86
My last Version (on Github) includes a MaxTravelDistance Option which is configurable via the UserSettings.
The Default Lat & Lng values are the center point from where he start calculation. If he goes far away then the MaxTravelDistance there is a Logic to move back to the Start Point.
And with the lateste release there is a new option called: PrioritizeIVOverCP.
For Transfer the Bot SHOULD currently to the following:
Select all Pokemon which are not marked as gym or favorite and with CP < KeepMinCP
Then check for Pokemons on the NoTransfer List
Then check for prioritizeIVoverCP, its enabled it will sort it by IV, otherwise by CP.
And then keep X amount you set via KeepMinDuplicatePokemon.
just got the updated one but cant see anywhere the maxtraveldistance option :/
-
Sergeant
Originally Posted by
wisblur
If I change to <KeepMinDuplicatePokemon>2</KeepMinDuplicatePokemon>, will it keep 2 of each pokemon and transfer the 3rd and beyond?
yes ,
keep 2 of them regardless CP or IV
-
Post Thanks / Like - 1 Thanks
Silencer4311 (1 members gave Thanks to NetAnt for this useful post)
-
Member
Guys, I'm botting 3 accounts, and after I start bot one more account, the first client was crashed. Is there any limitation of number of bot client?