-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json.example
More file actions
68 lines (68 loc) · 2.55 KB
/
Copy pathconfig.json.example
File metadata and controls
68 lines (68 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"bots": {
"bot_comment": "add as many bots as you want, recommend 5 bots per proxy or niantic will ip ban",
"BotOne": {
"proxy_comment": "proxy to use leave, ip, port, user, password blank to not use proxy",
"proxy": {
"ip": "192.168.2.1",
"port": "8080",
"login_comment": "leave user, password blank if proxy doesn't require authentication",
"user": "trump",
"password": "build_it_tall"
},
"login_description": "google login, replace with ptc for ptc login",
"google": {
"username": "example_username",
"password": "example_password"
},
"location": {
"latitude": "80",
"longitude": "100",
"walking_step_distance_comment": "how long a step is in meters, 1 is a good number",
"walking_step_distance": "1",
"max_speed_walking_comment": "max walking speed in meters per second",
"max_speed_walking": "4",
"running_step_distance": "5",
"max_distance_comment": "max distance bot can get from starting location in meters, set to -1 to ignore",
"max_distance": "1000",
"time_reset_comment": "time until bot resets to start location in seconds, set to -1 to ignore",
"time_reset": "240"
},
"farming_comment": "bot objectives can be set here. example: catch_pokemon: false, loot_pokestops: false, manage_eggs: true, bot will just walk around to incubate egg",
"farming": {
"catch_pokemon": "true",
"loot_pokestops": "true",
"manage_eggs_comment": "automatically incubate eggs etc",
"manage_eggs": "true",
"evolve_pokemon": {
"evolve": "true",
"keep_unevolved_comment": "add pokemon names you don't want evolved. list of names in pokemon_names.txt",
"keep_unevolved": [
"ABRA",
"KADABRA"
]
},
"transfer_pokemon": {
"transfer": "true",
"iv_over_cp_comment": "treat iv as more important than cp",
"iv_over_cp": "false",
"threshold_comment": "minimum iv, cp to keep pokemon",
"threshold_iv": "80",
"treshold_cp": "400",
"obligatory_comment": "transfer regardless of cp, iv",
"obligatory": [
"DODUO",
"RATTATA",
"CATERPIE",
"PIDGEY"
],
"protect_comment": "add pokemon names you don't want to transfer. list of names in pokemon_names.txt",
"protect": [
"EEVEE",
"MEWTWO"
]
}
}
}
}
}