-
Notifications
You must be signed in to change notification settings - Fork 4
/
bot_settings_types.json
59 lines (59 loc) · 1.53 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
[
{
"key": "auto_tasks",
"name": "Auto Finish Tasks",
"type": "checkbox",
"default_value": "on",
"description": "Automatically finish tasks (Youtube, Twitter, etc)."
},
{
"key": "auto_playground",
"name": "Auto Playground",
"type": "checkbox",
"default_value": "on",
"description": "Automatically play playground games, one game per each run cycle."
},
{
"key": "auto_upgrade",
"name": "Auto Upgrade",
"type": "checkbox",
"default_value": "on",
"description": "Automatically upgrade your hamster cards."
},
{
"key": "upgrade_coefficient",
"name": "Upgrade Coefficient",
"type": "range",
"default_value": 200,
"description": "Upgrade coefficient, if [card price] / [card profit] > [Upgrade Coefficient] then do not buy this card.",
"min": 100,
"max": 100000
},
{
"key": "check_interval",
"name": "Check Interval",
"type": "range",
"default_value": 300,
"description": "Interval in seconds to check accounts.",
"min": 300,
"max": 3600
},
{
"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
},
{
"key": "referral_token",
"name": "Referral Token",
"type": "text",
"default_value": "kentId95736407",
"placeholder": "kentId95736407",
"description": "Referral token to use for new accounts.",
"required": false
}
]