generated from Soulter/helloworld
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_conf_schema.json
More file actions
40 lines (40 loc) · 1.11 KB
/
_conf_schema.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"success_prob": {
"description": "成功概率",
"type": "float",
"default": 0.25
},
"max_fail_prob": {
"description": "失败概率上限",
"type": "float",
"default": 0.95
},
"game_trigger_limit": {
"description": "游戏触发次数限制",
"type": "int",
"default": 3
},
"rank_query_limit": {
"description": "排行榜查询次数限制",
"type": "int",
"default": 1
},
"retract_config": {
"description": "消息撤回配置",
"type": "object",
"items": {
"retract_delay": {
"description": "消息撤回延迟(秒)",
"type": "int",
"default": 10,
"hint": "设置为 0 则不自动撤回"
},
"dont_retract_on_success": {
"description": "追击成功时不撤回",
"type": "bool",
"default": true,
"hint": "勾选后,成功追上小祥的消息将不会被自动撤回"
}
}
}
}