-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings_structure.js
More file actions
37 lines (37 loc) · 934 Bytes
/
settings_structure.js
File metadata and controls
37 lines (37 loc) · 934 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
35
36
37
module.exports = [
{
"key": "writelog",
"name": "Write ticked options to the logfile in the modules sub folder.",
"type": "bool"
},
{
"key": "logabnormal",
"name": "Logging boss abnormalities applied to you or the boss.",
"type": "bool"
},
{
"key": "dungeonmessage",
"name": "Logging of dungeon messages called in the dungeon.",
"type": "bool"
},
{
"key": "questballoon",
"name": "Logging of questballoon called in the dungeon.",
"type": "bool"
},
{
"key": "logboss",
"name": "Logging of boss attacks during the fight.",
"type": "bool"
},
{
"key": "blacklist",
"name": "Abnormality id blacklist function.",
"type": "string"
},
{
"key": "whitelist",
"name": "Template id whitelist function.",
"type": "string"
}
];