-
Member
What kind of xp a hr our you guys getting with this?
-
Member
Originally Posted by
Inny
Yeah, right! I'm having a lot of fun fiddling around with this stuff myself. Should be studying for my exam tomorrow, hehehe.
But at least my bot is running meanwhile.
Not looking forward to getting banned / all of this being over, but hey, guess then we'll get back to summer.
For now, have fun!!
Couldnt get any of this to work. Yesterdays version works fine for me while i cant get todays version to work, even uneddited :O Getting into this stuff is really hard as a beginner^^ Will give it tomorrow another shot
-
Corporal
Originally Posted by
shadowht
my code/solution didnt found any "await RepeatAction("
the only "repeat" i found is this one
Screenshot by Lightshot
anyway, thanks for your help iam just gonna use the normal code
Right-click RepeatAction and hit Find all References (Shift+F12). In the results bar below, you will find where you need to go.
Last edited by Inny; 07-21-2016 at 07:05 PM.
-
Post Thanks / Like - 1 Thanks
shadowht (1 members gave Thanks to Inny for this useful post)
-
Originally Posted by
Shops
What kind of xp a hr our you guys getting with this?
Assuming you get at least 1 Pokestop and 1 Pokemon per minute and all the throws are excellent, that'd be 60*(50 + 200) = 15000 EXP/hr approximately.
Facing problems with your bot? Check out this thread for possible solutions:
https://www.ownedcore.com/forums/pokemon-go/pokemon-go-hacks-cheats/564223-compilation-common-errors-solutionss.html
-
Member
how can i disable white list for cp threshold?
-
Member
guys can you tell me if this is working with google auth?
-
Member
How do i get a refresh token for my account?
-
Member
I'm getting google errors after even redownloading LOL
-
Member
Bot with no edits even with error that comes up every now and then works well built up a little army. Organized it by icon Blue Google rest Ptc
-
Member
Working much better now lasts over a hour before I get the "access token expired" for google
-
Member
Ohhh damn i managed to make it work perfectly
-
Active Member
Originally Posted by
Inny
I think we're using a slightly different version. Going by your screenshot, adjust as follows:
Code:
// Upgrade Pokeball if < 20% cap chance
if (encounter?.CaptureProbability.CaptureProbability_.First() < 0.20) {
what does .? mean?
i mean what does ? do in before the dot
-
Member
Originally Posted by
Inny
Right-click RepeatAction and hit Find all References (Shift+F12). In the results bar below, you will find where you need to go.
already did that ^^
Screenshot by Lightshot
the problem is this new version, i guess, its not even transfering pokemons
-
Member
Originally Posted by
MonsterMMORPG
what does .? mean?
i mean what does ? do in before the dot
It a Null-conditional Operators. It use to test null.
-
Post Thanks / Like - 1 Thanks
MonsterMMORPG (1 members gave Thanks to sh4z4m for this useful post)
-
Member
Only evolve specific Pokémon
Inventory.cs 108:
// Require 2x Candy requirement in inventory and Pokémon not to be specified, in that case evolve it
// Using this to save up the specified common Pokémon for mass-evolve with Candy
Code:
if (familyCandy.Candy - pokemonCandyNeededAlready > 2*settings.CandyToEvolve &&! ( pokemon.PokemonId == PokemonId.Rattata ||
pokemon.PokemonId == PokemonId.Pidgey || pokemon.PokemonId == PokemonId.Pidgeotto ||
pokemon.PokemonId == PokemonId.Caterpie || pokemon.PokemonId == PokemonId.Metapod ||
pokemon.PokemonId == PokemonId.Weedle || pokemon.PokemonId == PokemonId.Kakuna )
)
Thanks for the mod inny, however only evolve specific pokemon is not working, theres no error or anything its just doesn't evolve at all
Last edited by loelie; 07-21-2016 at 07:28 PM.