-
Notifications
You must be signed in to change notification settings - Fork 0
/
modinfo.lua
63 lines (60 loc) · 1.71 KB
/
modinfo.lua
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
name = "DST TO QQ"
description = [[
在QQ群中可以与游戏中聊天(基于xsluck大佬的项目),需要自己搭建koishi机器人,教程见mod主页
可在配置项启用特定消息转发,转发科雷id,开启日志
默认端口为http post 5140
]]
author = " ling , xsluck "
version = "0.0.4"
forumthread = ""
api_version = 10
dont_starve_compatible = false
reign_of_giants_compatible = false
dst_compatible = true
all_clients_require_mod = false
client_only_mod = false
icon_atlas = 'icon.xml'
icon = "icon.tex"
configuration_options =
{
{
name = "isPrefix",
label = "消息前缀",
hover = "启用则前面带:的消息才会传到QQ",
options =
{
{ description = "禁用", data = false },
{ description = "启用", data = true },
},
default = false,
},
{
name = "isLog",
label = "日志",
hover = "打印日志便于排错",
options =
{
{ description = "禁用", data = false },
{ description = "启用", data = true },
},
default = true,
},
{
name = "serverId",
label = "服务器id",
hover = "服务器id,用于多服务器操作,单服务器可无视",
options =
{
{ description = "1", data = 1 },
{ description = "2", data = 2 },
{ description = "3", data = 3 },
{ description = "4", data = 4 },
{ description = "5", data = 5 },
{ description = "6", data = 6 },
{ description = "7", data = 7 },
{ description = "8", data = 8 },
{ description = "9", data = 9 },
},
default = 1,
}
}