You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `tasks` | [] | The behaviors you want the bot to do. Read [how to configure tasks](#configuring-tasks).
85
+
| `solve_captcha` | False | True: Allow bot to solve captcha when enabled. Either using automatic (2Captcha service, token to be specify in auth.json) or manual solving [more information](https://github.com/PokemonGoF/PokemonGo-Bot/pull/6050)
85
86
| `max_steps` | 5 | The steps around your initial location (DEFAULT 5 mean 25 cells around your location) that will be explored
86
87
|`forts.avoid_circles`| False | Set whether the bot should avoid circles |
87
88
|`forts.max_circle_size`| 10 | How many forts to keep in ignore list |
@@ -276,6 +277,7 @@ The behaviors of the bot are configured via the `tasks` key in the `config.json`
276
277
*`enabled`: Default true | Enable for disable this task
277
278
*`spin_wait_min`: Defaut 3 | Minimum wait after spinning a fort
278
279
*`spin_wait_max`: Default 5 | Maximum wait after spinning a fort
280
+
*`use_lure`: Default `False` | Enable to depoly lure (if available) at fort
279
281
* TransferPokemon
280
282
*`enable`: Disable or enable this task.
281
283
*`min_free_slot`: Default `5` | Once the pokebag has less empty slots than this amount, the transfer process is triggered. | Big values (i.e 9999) will trigger the transfer process after each catch.
@@ -1406,13 +1408,23 @@ Hunts down nearby Pokemon. Searches for Pokemon to complete the Pokedex, or if a
1406
1408
[[back to top](#table-of-contents)]
1407
1409
1408
1410
* `max_distance`: `Default: 2000`. Maxium of meters for the "nearby" part.
1411
+
* `enable_cooldown`: `Default: true`. After a hunt (succesful or not) have a cool down (stops hunting for a bit)
1409
1412
* `hunt_all`: `Default: false`. Should we hunt for ALL nearby Pokemon?
1410
1413
* `hunt_vip`: `Default: true`. Should we hunt for VIP Pokemon?
1411
1414
* `hunt_pokedex`: `Default: true`. Should we hunt for Pokemon we need to complete the Pokedex (make family complete)
1412
1415
* `lock_on_target`: `Default: false`. Should we ignore all other Pokemon while hunting?
1413
1416
* `lock_vip_only`: `Default: true`. Is the above only used for real VIPs? (Not to complete the Pokedex)
1414
1417
* `disabled_while_camping`: `Default: true`. Should we stop hunting for nearby Pokemon while sitting at lures?
1418
+
* `hunt_closest_first`: `Default: false`. Prioritize by distance instead of number of candy?
1415
1419
* `treat_unseen_as_vip`: `Default: true`. Should we treat unseen Pokemons as VIPs?
1420
+
* `target_family_of_vip`: `Default: true`. Should we treat family of a VIP as a valid target?
1421
+
* `treat_family_of_vip_as_vip`: `Default: false`. Should we see family of an VIP as a VIP (locking onto it if enabled)
1422
+
* `hunt_for_trash_to_fill_bag`: `Default: false`. Should we try to fill the bag with trash if a set amount of slots is left?
1423
+
* `trash_hunt_open_slots`: `Default: 25`. The amount of slots for the previous setting
1424
+
1425
+
### Hunting for trash
1426
+
If enabled the hunter will start hunting down Pidgeys, Weedles and Caterpies when a set amount of slots (defaults to 25) are left in the bag to fill. The idea is simple; we are about to start evolving Pokemon. So the priority of the hunter shiftes. BUT when a VIP Pokemon is nearby, the Hunter will always start chasing that VIP first.
1427
+
Also hunting for trash does NOT lock the target, catching all Pokemon it find on the way to the target.
1416
1428
1417
1429
### Sample configuration
1418
1430
[[back to top](#table-of-contents)]
@@ -1421,14 +1433,18 @@ Hunts down nearby Pokemon. Searches for Pokemon to complete the Pokedex, or if a
Copy file name to clipboardExpand all lines: docs/faq.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,15 @@
1
-
### Do I need hashing key ?
2
-
Without hashing key, the bot will use API in version 0.45, which is not used in legit game any longer. Learn more about - [hashing key here](http://hashing.pogodev.org).
1
+
### Do I need hashing key?
2
+
The bot will not run without a vaild hashing key. Learn more about - [hashing key here](http://hashing.pogodev.org).
3
+
4
+
### Does the bot support 2Captcha service?
5
+
Yes. Please include your 2Captcha token in auth.json
6
+
```
7
+
"2captcha_token": "YOUR_KEY_HERE"
8
+
```
9
+
10
+
### Does the bot support manual Captcha solving?
11
+
Yes. Please download chrome driver for your os plaform and place it into the root directory of the bot.
12
+
More information on [chrome driver here](https://sites.google.com/a/chromium.org/chromedriver/).
3
13
4
14
### How do I start the application?
5
15
After [installing] (https://github.com/PokemonGoF/PokemonGo-Bot/blob/dev/docs/installation.md), in the root folder run the following command:
0 commit comments