-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings_structure.js
More file actions
57 lines (57 loc) · 1.11 KB
/
settings_structure.js
File metadata and controls
57 lines (57 loc) · 1.11 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
module.exports = [
{
"key": "enabled",
"name": "enable mod",
"type": "bool"
},
{
"key": "weapon",
"name": "enable custom weapon list",
"type": "bool"
},
{
"key": "body",
"name": "enable custom body list",
"type": "bool"
},
{
"key": "face",
"name": "enable custom face list",
"type": "bool"
},
{
"key": "hair",
"name": "enable custom hair list",
"type": "bool"
},
{
"key": "back",
"name": "enable custom back list",
"type": "bool"
},
{
"key": "effect",
"name": "enable custom effect list",
"type": "bool"
},
{
"key": "underwear",
"name": "enable custom underwear list",
"type": "bool"
},
{
"key": "mount",
"name": "enable custom mount list",
"type": "bool"
},
{
"key": "servant",
"name": "enable custom servant list",
"type": "bool"
},
{
"key": "service",
"name": "enable custom service list",
"type": "bool"
}
];