-
Master Sergeant
Just see my bots starting up again. Indeed not down but unstable. Japan, get out! :-)
-
Member
during downtime, anyone have an idea on how far is the radius where your bot will stray off to before reseting to ur starting spot?
-
Member
Thx for this soft!
p.s. after softban my nick name changed =) They adding to my nickname "Bot" =))))
-
Master Sergeant
Originally Posted by
zoozuu
Thx for this soft!
p.s. after softban my nick name changed =) They adding to my nickname "Bot" =))))
Really?! Picture or it didnt happen!
Pokemon busy to do stuff? =)
-
Member
how do you set when to use pokeball and when to use great/ultra ball?
at what CP do you recommend to use each?
-
Master Sergeant
Is there new type of autoauth token?
IN OP it says:
AUTHTOKEN ALWAYS STARTS WITH 1/
My previous tokens also started with 1/.
Now I get something starting with ya29. and its a little longer I guess. So this is good generated token now and can I past it in app? Or something went wrong?
nvm, just pasted it and its working. You may want to edit #1 post instruction about "always starts with /1" to not confuse others.
Last edited by pinn90; 07-22-2016 at 04:19 AM.
-
Member
When servers up, take pic 
Battle, pokemons, pokestops now working good
-
Member
Went from level 10 to 20 in just 6hrs thanks !!
-
Master Sergeant
Originally Posted by
Andrex430
how do you set when to use pokeball and when to use great/ultra ball?
at what CP do you recommend to use each?
Existing code in current project:
Code:
// Use better balls for high CP pokemon
if (masterBallsCount > 0 && pokemonCP >= 1000)
return MiscEnums.Item.ITEM_MASTER_BALL;
if (ultraBallsCount > 0 && pokemonCP >= 600)
return MiscEnums.Item.ITEM_ULTRA_BALL;
if (greatBallsCount > 0 && pokemonCP >= 150)
return MiscEnums.Item.ITEM_GREAT_BALL;
// If low CP pokemon, but no more pokeballs; only use better balls if pokemon are of semi-worthy quality
if (pokeBallsCount > 0)
return MiscEnums.Item.ITEM_POKE_BALL;
else if ((greatBallsCount < 40 && greatBallsCount > 0 && pokemonCP >= 200) || greatBallsCount >= 40)
return MiscEnums.Item.ITEM_GREAT_BALL;
else if (ultraBallsCount > 0 && pokemonCP >= 500)
return MiscEnums.Item.ITEM_ULTRA_BALL;
else if (masterBallsCount > 0 && pokemonCP >= 700)
return MiscEnums.Item.ITEM_MASTER_BALL;
return MiscEnums.Item.ITEM_POKE_BALL;
You'll figure it out. Just change the levels to whatever you want and whenever you want it to use a specific ball.
Originally Posted by
Swosher1
Went from level 10 to 20 in just 6hrs thanks !!
Grats but goodluck on your next levels. Goes much much slower from 20.
-
Member
Originally Posted by
Snuppert
Existing code in current project:
Code:
// Use better balls for high CP pokemon
if (masterBallsCount > 0 && pokemonCP >= 1000)
return MiscEnums.Item.ITEM_MASTER_BALL;
if (ultraBallsCount > 0 && pokemonCP >= 600)
return MiscEnums.Item.ITEM_ULTRA_BALL;
if (greatBallsCount > 0 && pokemonCP >= 150)
return MiscEnums.Item.ITEM_GREAT_BALL;
// If low CP pokemon, but no more pokeballs; only use better balls if pokemon are of semi-worthy quality
if (pokeBallsCount > 0)
return MiscEnums.Item.ITEM_POKE_BALL;
else if ((greatBallsCount < 40 && greatBallsCount > 0 && pokemonCP >= 200) || greatBallsCount >= 40)
return MiscEnums.Item.ITEM_GREAT_BALL;
else if (ultraBallsCount > 0 && pokemonCP >= 500)
return MiscEnums.Item.ITEM_ULTRA_BALL;
else if (masterBallsCount > 0 && pokemonCP >= 700)
return MiscEnums.Item.ITEM_MASTER_BALL;
return MiscEnums.Item.ITEM_POKE_BALL;
You'll figure it out. Just change the levels to whatever you want and whenever you want it to use a specific ball.
Grats but goodluck on your next levels. Goes much much slower from 20.
but in which file is this?
-
Master Sergeant
Originally Posted by
Andrex430
but in which file is this?
Client.cs around line ~ 160. May difference a bit since I added some own shit.
-
Post Thanks / Like - 1 Thanks
Andrex430 (1 members gave Thanks to Snuppert for this useful post)
-
Member
Originally Posted by
Snuppert
Client.cs around line ~ 160. May difference a bit since I added some own shit.
I don't have this: Screenshot by Lightshot
-
Member
Hmm, it says farming started, but isn't actually doing anything. It's been up for 5 minutes so far.
-
Member
I cant still connect wia ptc
-
Master Sergeant
Originally Posted by
Andrex430
Ah, seems you have the pre-compiled old version. You can only change when you build it yourself in Visual Studio 2015. You can change what you want. On a precompiled one, you can only change settings that are in other files etc. Not the actual program itself. (Unless some cracking, but still).
I recommend you install Visual Studio 2015, Go to the first page of this thread, download the Github repository and build it in Visual Studio 2015. Please first look here for error's you may encounter before asking, cause I've seen questions being answered over 20 times and people still ask the same questions.
If this is too much for you, I recommend you stay at your precompiled app or let a friend create a new one for you with your needs.
Originally Posted by
oabdullah
Hmm, it says farming started, but isn't actually doing anything. It's been up for 5 minutes so far.
Originally Posted by
zenenet
I cant still connect wia ptc
Servers are unstable as it has been released in Japan today.