-
Sergeant
Originally Posted by
TBL-Equi
Just a headsup for higher level players. Masterballs are used on every 1000 CP pokemon if you don't change it. I set it to 1500 because I really don't want to waste my masterballs on 1100 CP Pinsirs in central park.
Masterballs can be unlocked? At which level?
-
Member
why console does not show googletoken in console ?
-
Contributor
I am not a coder at all, but I am good at reading and understanding certain parts of the development. I am running a Google login, without editing anything except co-ords, and it seems to be running slick. I am just going to leave fate in the hands of our coding masters
Thanks guys! Love it!
-
Member
Originally Posted by
sandking91
@HPT
So maybe try to change
await RepeatAction(10, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
to
await RepeatAction(2, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
It shouldn't take much time.
Ok thankssss
-
Member
=
Delete shit in the bag code
Code:
new KeyValuePair<ItemId, int>(ItemId.ItemPotion, 0),
new KeyValuePair<ItemId, int>(ItemId.ItemSuperPotion, 0),
new KeyValuePair<ItemId, int>(ItemId.ItemHyperPotion, 0),
new KeyValuePair<ItemId, int>(ItemId.ItemRevive, 0),
new KeyValuePair<ItemId, int>(ItemId.ItemRazzBerry, 20),
-
Member
Originally Posted by
Merudo
For trainers in Central Park:
I noticed the bot has a tendancy to leave Central Park to reach Pokestops in adjacent streets.
To ensure the bot only gets Pokestops in Central Park, I changed this code
Code:
var pokeStops =
mapObjects.MapCells.SelectMany(i => i.Forts)
.Where(
i => i.Type == FortType.Checkpoint &&
i.CooldownCompleteTimestampMs < DateTime.UtcNow.ToUnixTime());
To this
Code:
var pokeStops =
mapObjects.MapCells.SelectMany(i => i.Forts)
.Where(
i =>
i.Longitude < -103.692313681 + i.Latitude * .72905203747 &&
i.Longitude > -103.703941616 + i.Latitude * .72905203747 &&
i.Longitude < 22.4092333924 + i.Latitude * -2.36190713357 &&
i.Longitude > 22.3086001328 + i.Latitude * -2.36190713357 &&
i.Type == FortType.Checkpoint &&
i.CooldownCompleteTimestampMs < DateTime.UtcNow.ToUnixTime());
where is this code? i cant seem to find it
-
Member
Is there a tutorial to get this running? Thanks
-
Contributor
Originally Posted by
HPT
Delete shit in the bag code
Code:
new KeyValuePair<ItemId, int>(ItemId.ItemPotion, 0),
new KeyValuePair<ItemId, int>(ItemId.ItemSuperPotion, 0),
new KeyValuePair<ItemId, int>(ItemId.ItemHyperPotion, 0),
new KeyValuePair<ItemId, int>(ItemId.ItemRevive, 0),
new KeyValuePair<ItemId, int>(ItemId.ItemRazzBerry, 20),
What file do we stick that in?
Where do the transfer settings go now?
Found the new config settings
usersettings.settings
-
Member
Originally Posted by
sandking91
@HPT
So maybe try to change
await RepeatAction(10, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
to
await RepeatAction(2, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
It shouldn't take much time.
Seem not work
-
Member
Originally Posted by
mpslayer
What file do we stick that in?
Where do the transfer settings go now?
Found the new config settings
usersettings.settings
PokemonGO.RocketAPI.Console -> Setting.cs (Line 24)
-
Member
How to auto repeat it after 1 minute ?
n PokemonGo.RocketAPI.Logic/Logic.cs
Code:
try
{
await _client.SetServer();
await EvolveAllPokemonWithEnoughCandy();
await TransferDuplicatePokemon(true);
await RecycleItems();
await RepeatAction(10, async () => await ExecuteFarmingPokestopsAndPokemons(_client));
}
-
Member
man this bot is hard I cant get the transfer thing to work.......
-
Member
I want to use masterball not pokeball. What Can I do ?
-
Sergeant
When do people unlock masterball? At level 40?
-
Private
@HPT
So try creating BATCH file which will restart the app every 60 seconds. Not great, but working
#########
:1
TIMEOUT /T 10
start cmd /c "C:\boty\path\Pokemon-Go-Rocket-API-master\PokemonGo.RocketAPI.Console\bin\Debug\PokemonGo.RocketAPI.Console.exe"
TIMEOUT /T 60
taskkill /im PokemonGo.RocketAPI.Console.exe /F
goto 1
############
-
Post Thanks / Like - 1 Thanks
HPT (1 members gave Thanks to sandking91 for this useful post)