-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbot_settings_types.json
75 lines (75 loc) · 2.05 KB
/
bot_settings_types.json
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
69
70
71
72
73
74
75
[
{
"key": "game_points_min",
"name": "Minimum Claim Points (Game)",
"type": "range",
"default_value": 175,
"description": "Minimum claim points for games, it will be randomized between Minimum and Maximum.",
"min": 1,
"max": 220
},
{
"key": "game_points_max",
"name": "Maximum Claim Points (Game)",
"type": "range",
"default_value": 220,
"description": "Maximum claim points for games, it will be randomized between Minimum and Maximum.",
"min": 1,
"max": 245
},
{
"key": "game_enabled",
"name": "Auto Play Games",
"type": "checkbox",
"default_value": "on",
"description": "Should the bot automatically play games for you?"
},
{
"key": "task_enabled",
"name": "Auto Claim Tasks",
"type": "checkbox",
"default_value": "on",
"description": "Should the bot automatically do tasks for you?"
},
{
"key": "allow_join_channels",
"name": "Tasks [Auto Join Channels]",
"type": "checkbox",
"default_value": "on",
"description": "Some of tasks require to join channels, should the bot automatically join them?"
},
{
"key": "allow_start_other_bots",
"name": "Tasks [Auto Start Bots]",
"type": "checkbox",
"default_value": "on",
"description": "Some of tasks require to start other bots, should the bot automatically start them?"
},
{
"key": "delay_between_accounts",
"name": "Delay between accounts (seconds)",
"type": "range",
"default_value": 60,
"description": "How long to wait between accounts, in seconds.",
"min": 1,
"max": 1200
},
{
"key": "check_interval",
"name": "Check interval (seconds)",
"type": "number",
"default_value": 3600,
"description": "How often to login into accounts, in seconds.",
"min": 1800,
"max": 28800
},
{
"key": "max_threads",
"name": "Max Threads",
"type": "range",
"default_value": 5,
"description": "Maximum number of threads to use for checking groups of accounts based on their proxies.",
"min": 1,
"max": 15
}
]