-
Notifications
You must be signed in to change notification settings - Fork 4
/
user-config.js
144 lines (140 loc) · 5.33 KB
/
user-config.js
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
//
// Muledump Client Configuration Master Config Template
//
// 1. This file is intended to be used by Muledump configurations that make use of an accounts.js file.
// 2. Copy the desired contents into the bottom of your accounts.js file.
// 3. Remove the // before each setting you wish to enable or provide a list with only desired settings.
// 4. Be aware that the settings offered here may change with new releases.
// 5. Custom Character Sorting and Totals ConfigSets can be set in the config but cannot presently be edited in the UI.
//
// The client configuration key reference can be found here:
// https://jakcodex.github.io/muledump/docs/setuptools/dev/setuptools-object-ref#clientconfigkeys
//
*/
/*
// Required to enable feature
*/
userConfiguration.enabled = true;
/*
// SetupTools Client Configuration
*/
userConfiguration.config = {
// "accountAssistant": 1,
// "accountLoadDelay": 0,
// "accountsPerPage": 10,
// "alertNewVersion": 1,
// "animations": 1,
// "autocomplete": true,
// "autoReloadDays": 1,
// "compression": false,
// "corsAssistant": 1,
// "debugging": true,
// "exportDefault": 4,
// "errors": true,
// "giftChestWidth": 0,
// "groupsMergeMode": 2,
// "hideHeaderText": false,
// "lazySave": 10000,
// "longpress": 1000,
// "lowStorageSpace": true,
// "menuPosition": 2,
// "mulelogin": 0,
// "muleMenu": true,
// "nomasonry": 0,
// "pagesearch": 2,
// "preventAutoDownload": true,
// "rowlength": 7,
// "timesync": false,
// "tooltip": 500,
// "totalsExportWidth": 0,
// "totalswidth": 0
};
/*
// Muledump Custom Character Sorting Configuration
*/
userConfiguration.muledump.chsortcustom = {
// "sort": -1,
// "disabledmode": false,
// "accounts": {
// "myemail@gmail.com": {
// "active": "My favorite list",
// "data": {
// "My self-named list 1": [1, 4, 5],
// "Some different list name": [44, 90, 300, 2],
// "My favorite list": [900, 339, 22]
// }
// }
// }
};
/*
// Totals Configuration Sets
*/
userConfiguration.muledump.totals.configSets = {
// "active": "My set name",
// "favorites": ["Default", "My set name"], // don't remove Default unless you're never using it again
// "settings": {
// "My set name": {
// "totalsGlobal": false,
// "famefilter": false,
// "fameamount": "-1",
// "feedfilter": false,
// "feedpower": "-1",
// "sbfilter": false,
// "nonsbfilter": false,
// "utfilter": false,
// "stfilter": false,
// "disabled": [], // account guids in a list (e.g. ["email1@gmail.com", "steamworks:23094839483948", "otheremail@blah.com"])
// "totalsFilter-empty": true,
// "totalsFilter-swords": true,
// "totalsFilter-daggers": true,
// "totalsFilter-bows": true,
// "totalsFilter-tomes": true,
// "totalsFilter-shields": true,
// "totalsFilter-lightarmor": true,
// "totalsFilter-heavyarmor": true,
// "totalsFilter-wands": true,
// "totalsFilter-rings": true,
// "totalsFilter-potions": true,
// "totalsFilter-potionssb": true,
// "totalsFilter-candies": true,
// "totalsFilter-portkeys": true,
// "totalsFilter-textiles": true,
// "totalsFilter-skins": true,
// "totalsFilter-petstones": true,
// "totalsFilter-finespirits": true,
// "totalsFilter-testing": true,
// "totalsFilter-keys": true,
// "totalsFilter-helpfulconsumables": true,
// "totalsFilter-unlockers": true,
// "totalsFilter-eventitems": true,
// "totalsFilter-marks": true,
// "totalsFilter-tarot": true,
// "totalsFilter-treasures": true,
// "totalsFilter-assistants": true,
// "totalsFilter-petfood": true,
// "totalsFilter-other": true,
// "totalsFilter-spells": true,
// "totalsFilter-seals": true,
// "totalsFilter-cloaks": true,
// "totalsFilter-robes": true,
// "totalsFilter-quivers": true,
// "totalsFilter-helms": true,
// "totalsFilter-staves": true,
// "totalsFilter-poisons": true,
// "totalsFilter-skulls": true,
// "totalsFilter-traps": true,
// "totalsFilter-orbs": true,
// "totalsFilter-prisms": true,
// "totalsFilter-scepters": true,
// "totalsFilter-katanas": true,
// "totalsFilter-stars": true,
// "totalsFilter-eggs": true,
// "accountFilter": [], // account guids in a list (e.g. ["email1@gmail.com", "steamworks:23094839483948", "otheremail@blah.com"])
// "slotOrder": [], // see lib/slotmap.js for a list of item groups and their virtualSlotType; skipping this setting uses default sorting order
// "itemFilter": [], // item ids in a comma-separated list
// "slotSubOrder": {}, // honestly don't bother attempting this one for now; if you want to the format is {"vst1": [itemid, itemid, itemid], "vst2": [itemid, itemid, itemid]} for each vst you wish to suborder.
// "sortingMode": "fb" // possibilities are: standard, alphabetical, fb, fp
// }
// }
};