-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodinfo.lua
More file actions
34 lines (28 loc) · 783 Bytes
/
modinfo.lua
File metadata and controls
34 lines (28 loc) · 783 Bytes
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
name = "My mod name"
version = "1.0.0"
description = "Version " .. version .. "\n\n This mod is very good."
author = "my-name"
api_version = 10
dont_starve_compatible = false
reign_of_giants_compatible = false
shipwrecked_compatible = false
dst_compatible = true
icon_atlas = "my-mod-name.xml"
icon = "my-mod-name.tex"
-- forumthread = "/topic/xxx-abc/"
all_clients_require_mod = true
client_only_mod = false
server_filter_tags = { "tag1", "tag2" }
configuration_options =
{
{
name = "property_name",
label = "Property Name",
options = {
{ description = "Low", data = "low" },
{ description = "Default", data = "default" },
{ description = "High", data = "high" },
},
default = "default"
}
}