-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmodinfo.lua
More file actions
67 lines (63 loc) · 1.82 KB
/
modinfo.lua
File metadata and controls
67 lines (63 loc) · 1.82 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
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
name = "Console Command Shortcuts"
author = "rawii22 & lord_of_les_ralph"--"IceGrog"
description = "Adds buttons to the screen for some common commands. Check configurations for giving access to players.\n"
.."The following are the only bound commands:\n"
.." C : Super God Mode\n"
.." V : Next Phase\n"
.." B : Creative Mode\n"
.." N : Toggle Precipitation\n\n"
.."Right-click custom buttons 1 & 2 (bound to ',' and '.') to type in whatever command you desire. Then hit Enter or click Accept to bind the command."
.."For nerds: If you want to choose who gets to use the panel, find their userid and paste it into the adminlist.txt file in the mod folder. There are instructions there.\n\n"
.."Thanks IceGrog & squeek! WITHOUT THEM WE WOULDN'T HAVE BEEN ABLE TO MAKE THIS MOD!"
version = "1.6"
version_compatible = "1.1"
icon = "modicon.tex"
icon_atlas = "modicon.xml"
forumthread = ""
api_version = 10
api_version_dst = 10
--priority = 5
dont_starve_compatible = false
reign_of_giants_compatible = false
shipwrecked_compatible = false
dst_compatible = true
all_clients_require_mod = true
client_only_mod = false
server_filter_tags = {
"console",
"commands",
"console commands",
"console widget",
"command widget",
"console shortcuts",
"command shortcuts",
}
configuration_options = {
{
name = "LETTERS",
label = "Letters on Buttons",
default = false,
options = {
{description = "NO", data = false},
{description = "YES", data = true}
}
},
{
name = "DISABLE_KEYS",
label = "Disable Keybinds",
default = false,
options = {
{description = "NO", data = false},
{description = "YES", data = true}
}
},
{
name = "ADMIN_ONLY",
label = "Only for Server Admins",
default = true,
options = {
{description = "NO", data = false},
{description = "YES", data = true}
}
}
}