-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsettings.lua
More file actions
81 lines (80 loc) · 1.68 KB
/
settings.lua
File metadata and controls
81 lines (80 loc) · 1.68 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
data:extend({
-- Runtime
{
name = "Avatars_debug_mode",
type = "bool-setting",
setting_type = "runtime-global",
default_value = false,
order = "000"
},
{
name = "Avatars_default_avatar_name",
type = "string-setting",
setting_type = "runtime-global",
default_value = "Avatar #",
order = "100"
},
{
name = "Avatars_default_avatar_remote_deployment_unit_name",
type = "string-setting",
setting_type = "runtime-global",
default_value = "ARDU #",
order = "200"
},
{
name = "Avatars_default_avatar_remote_deployment_unit_name_deployed_prefix",
type = "string-setting",
setting_type = "runtime-global",
default_value = "Mk",
order = "300"
},
{
name = "Avatars_avatar_ownership",
type = "string-setting",
setting_type = "runtime-global",
default_value = "force",
allowed_values = {"force", "player"},
order = "400"
},
{
name = "Avatars_command_allowed_groups",
type = "string-setting",
setting_type = "runtime-global",
default_value = "",
allow_blank = true,
order = "500"
},
-- Startup
{
name = "Avatars_avatar_color_red",
type = "double-setting",
setting_type = "startup",
default_value = 0.737,
minimum_value = 0,
maximum_value = 1
},
{
name = "Avatars_avatar_color_green",
type = "double-setting",
setting_type = "startup",
default_value = 0.776,
minimum_value = 0,
maximum_value = 1
},
{
name = "Avatars_avatar_color_blue",
type = "double-setting",
setting_type = "startup",
default_value = 0.90,
minimum_value = 0,
maximum_value = 1
},
{
name = "Avatars_avatar_color_alpha",
type = "double-setting",
setting_type = "startup",
default_value = 0.7,
minimum_value = 0,
maximum_value = 1
}
})