-
Notifications
You must be signed in to change notification settings - Fork 0
/
modinfo.lua
43 lines (38 loc) · 958 Bytes
/
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
name = "Breaking Warning"
description = "Announce when someone is hammering or light anything."
author = "辣椒小皇纸"
version = "1.3.1"
forumthread = ""
api_version = 10
all_clients_require_mod = false
client_only_mod = false
dst_compatible = true
icon_atlas = "modicon.xml"
icon = "modicon.tex"
----------------------
-- General settings --
----------------------
configuration_options =
{
{
name = "lang",
label = "Language",
hover = "",
options = {
{description = "中文", data = "zh", hover = ""},
{description = "English", data = "en", hover = ""},
},
default = "zh",
},
{
name = "notice_method",
label = "Notice Method",
hover = "",
options = {
{description = "Announce横幅公告", data = 1, hover = ""},
{description = "System Message聊天栏", data = 2, hover = ""},
{description = "None无", data = 0, hover = ""},
},
default = 2,
},
}