-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot_settings_types.json
92 lines (92 loc) · 2.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[
{
"key": "auto_add_tag",
"name": "Add 🌱SEED to last name",
"type": "checkbox",
"default_value": "off",
"description": "Should add 🌱SEED to last name of the account?"
},
{
"key": "auto_upgrade_storage",
"name": "Auto upgrade storage",
"type": "checkbox",
"default_value": "on",
"description": "Should the bot automatically upgrade storage when possible?"
},
{
"key": "auto_upgrade_mining",
"name": "Auto upgrade mining",
"type": "checkbox",
"default_value": "on",
"description": "Should the bot automatically upgrade mining when possible?"
},
{
"key": "auto_upgrade_holy",
"name": "Auto upgrade holy",
"type": "checkbox",
"default_value": "on",
"description": "Should the bot automatically upgrade holy when possible?"
},
{
"key": "auto_do_tasks",
"name": "Auto do tasks",
"type": "checkbox",
"default_value": "on",
"description": "Should the bot automatically do tasks when possible?"
},
{
"key": "auto_join_channels",
"name": "Auto join channels",
"type": "checkbox",
"default_value": "on",
"description": "Auto join channels to finish tasks."
},
{
"key": "auto_start_bots",
"name": "Auto start bots",
"type": "checkbox",
"default_value": "on",
"description": "Auto start bots to finish tasks."
},
{
"key": "auto_do_hunt",
"name": "Auto do hunt",
"type": "checkbox",
"default_value": "on",
"description": "Should the bot automatically do hunt when possible?"
},
{
"key": "random_sleep",
"name": "Random sleep",
"type": "checkbox",
"default_value": "on",
"description": "Should the bot sleep randomly after each session? 5-30 seconds."
},
{
"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
},
{
"key": "referral_token",
"name": "Referral Token",
"type": "text",
"placeholder": "95736407",
"default_value": "95736407",
"required": false,
"description": "Put your referral token here. It's just your ID. Format: e.g: 95736407"
}
]