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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
|
import { @Vigilant, @ButtonProperty, @SwitchProperty, @SelectorProperty, @SliderProperty, @TextProperty } from 'Vigilance'
@Vigilant("Coleweight/config", "Coleweight Settings", {
getCategoryComparator: () => (a, b) => {
const categories = ["General", "Naturals", "Gui", "Stats", "Foraging"];
return categories.indexOf(a.name) - categories.indexOf(b.name);
}
})
class Settings {
@SwitchProperty({
name: "Coleweight tracker",
description: "Enables the Coleweight tracker. (gain coleweight for a few mins for it to show up)",
subcategory: "Coleweight Tracker",
category: "Gui"
})
cwToggle = false;
@ButtonProperty({
name: "Change Coleweight tracker position",
description: "Move the location of the coleweight tracker.",
subcategory: "Coleweight Tracker",
category: "Gui",
placeholder: "Open"
})
moveCwLocation() {
ChatLib.command("cw move coleweight", true);
}
@SwitchProperty({
name: "Rank chat",
description: "Enables the Coleweight rank message after a name in chat.",
subcategory: "Ranked Chat",
category: "General"
})
rankChat = true;
@SwitchProperty({
name: "Rank everywhere",
description: "Enables showing Coleweight rank everywhere. (instead of just in Crystal Hollows/Dwarven Mines)",
subcategory: "Ranked Chat",
category: "General"
})
rankEverywhere = false;
@SwitchProperty({
name: "Track griefers",
description: "Check lobbies for griefers (on join and when new players join.) Mining cult does not encourage the harrasment of people on this list.",
subcategory: "Random Features",
category: "General"
})
trackGriefers = true;
@SwitchProperty({
name: "Griefer messages everywhere",
description: "Makes griefer messages appear in all lobbies (not just CH/DM)",
subcategory: "Random Features",
category: "General"
})
grieferEverywhere = false;
@SwitchProperty({
name: "Dwarven notifier",
description: "Notifies you every day when not in Dwarven Mines.",
subcategory: "Random Features",
category: "General"
})
dwarvenNotifier = false;
@SwitchProperty({
name: "Debug",
description: "Toggles debug mode.",
subcategory: "Random Features",
category: "General"
})
debug = false;
@SwitchProperty({
name: "Downtime tracker",
description: "Tracks downtime.",
subcategory: "Downtime",
category: "Gui"
})
downtimeTracker = false;
@ButtonProperty({
name: "Change downtime tracker position",
description: "Move the location of the downtime tracker.",
subcategory: "Downtime",
category: "Gui",
placeholder: "Open"
})
moveDowntimeLocation() {
ChatLib.command("cw move downtime", true);
}
@SwitchProperty({
name: "Efficient Miner Overlay",
description: "Points towards the best block to break with efficient miner. (Also dwarven mines mithril overlay)",
subcategory: "Efficient Miner Overlay",
category: "Gui"
})
efficientMinerOverlay = false;
@SwitchProperty({
name: "Collection tracker",
description: "Tracks collections ('/cw track (collection)' to set).",
subcategory: "Collection",
category: "Gui"
})
collectionTracker = false;
@SwitchProperty({
name: "Collection notation",
description: "Changes collection to be abbrivated like '45K' or '2M'.",
subcategory: "Collection",
category: "Gui"
})
collectionNotation = true;
@SwitchProperty({
name: "Collection show always",
description: "Changes collection tracker to show always.",
subcategory: "Collection",
category: "Gui"
})
showCollectionTrackerAlways = false;
@ButtonProperty({
name: "Change collection tracker position",
description: "Move the location of the collection tracker.",
subcategory: "Collection",
category: "Gui",
placeholder: "Open"
})
moveCollectionLocation() {
ChatLib.command("cw move collection", true);
}
@SwitchProperty({
name: "Marked lobbies",
description: "Enables lobby marking (automatic).",
category: "General",
subcategory: "Marking"
})
lobbyMarking = false;
@ButtonProperty({
name: "Clear lobbies",
description: "Clears marked lobbies.",
category: "General",
subcategory: "Marking",
placeholder: "Clear"
})
clearLobbies() {
ChatLib.command("cw clearlobbies", true);
}
@SwitchProperty({ // Gui
name: "Timer",
description: "Toggles visibility of CHollows timer",
subcategory: "Timer",
category: "Gui"
})
timerVisible = false;
@ButtonProperty({
name: "Change timer position",
description: "Move the location of the timer.",
subcategory: "Timer",
category: "Gui",
placeholder: "Open"
})
moveTimerLocation() {
ChatLib.command("cw move timer", true);
}
@SwitchProperty({ // Mining abilities
name: "Mining abilities",
description: "Toggles title notification of mining abilities.",
subcategory: "Mining Abilities",
category: "Gui"
})
miningAbilities = false;
@SwitchProperty({
name: "Mining abilities gui",
description: "Toggles mining abilities gui.",
subcategory: "Mining Abilities",
category: "Gui"
})
miningAbilitiesGui = false;
@SelectorProperty({
name: "Mining abilities alignment",
description: "Sets the alignment of the tracker.",
subcategory: "Mining Abilities",
category: "Gui",
options: ["Left", "Center", "Right"]
})
miningAbilitiesAlignment = 0;
@ButtonProperty({
name: "Change mining abilities position",
description: "Move the location of the mining abilities gui.",
subcategory: "Mining Abilities",
category: "Gui",
placeholder: "Open"
})
moveAbilitiesLocation() {
ChatLib.command("cw move miningabilities", true);
}
@SwitchProperty({ // Powdertracker
name: "Show powdertracker",
description: "If the tracker overlay should be visible.",
subcategory: "Powdertracker",
category: "Gui"
})
trackerVisible = false;
@SwitchProperty({
name: "Show totals",
description: "If the tracker should show the total amount.",
subcategory: "Powdertracker",
category: "Gui"
})
showTotals = true;
@SwitchProperty({
name: "Show rates",
description: "If the tracker should show the estimated rates per hour.",
subcategory: "Powdertracker",
category: "Gui"
})
showRates = true;
@SelectorProperty({
name: "Alignment",
description: "Sets the alignment of the tracker.",
subcategory: "Powdertracker",
category: "Gui",
options: ["Left", "Right", "Center"]
})
trackerAlignment = 0;
@ButtonProperty({
name: "Change Powdertracker position",
description: "Move the location of the powdertracker.",
subcategory: "Powdertracker",
category: "Gui",
placeholder: "Open"
})
movePowderLocation() {
ChatLib.command("cw move powdertracker", true);
}
@SwitchProperty({
name: "Show naturals",
description: "If natural veins should show.",
category: "Naturals"
})
showNaturals = false;
@SliderProperty({
name: "Natural range",
description: "Range that naturals will show up in",
category: "Naturals",
min: 16,
max: 64
})
naturalRange = 32;
@SwitchProperty({ // Stats
name: "Gemstone mining stats",
description: "Shows gemstone mining speed/fortune on player profile. Also shows tick that you're mining at. (set block below)",
category: "Stats"
})
gemstoneMiningStats = true;
@SwitchProperty({ // Stats
name: "Show powder sum",
description: "Shows powder sum in HOTM menu.",
category: "Stats"
})
showPowderSum = false;
@SelectorProperty({
name: "Tick speed block",
description: "Sets the tick speed block on player profile.",
category: "Stats",
options: ["Green Mithril", "Blue Mithril", "Ruby", "Normal gemstone (jade, amethyst, etc)", "Topaz/Opal", "Jasper"]
})
tickSpeedBlock = 3;
@SwitchProperty({ // Foraging
name: "Treecap timer",
description: "Shows a timer over crosshair that shows time to next treecapitator proc.",
category: "Foraging"
})
treecapTimer = false;
constructor() {
this.initialize(this);
this.registerListener("Rank chat", value => {
this.rankChat = value;
})
this.registerListener("Rank everywhere", value => {
this.rankEverywhere = value;
})
this.registerListener("Track griefers", value => {
this.trackGriefers = value;
})
this.registerListener("Griefer messages everywhere", value => {
this.grieferEverywhere = value;
})
this.registerListener("Dwarven notifier", value => {
this.dwarvenNotifier = value;
})
this.registerListener("Debug", value => {
this.debug = value;
})
this.registerListener("Marked lobbies", value => {
this.lobbyMarking = value;
})
this.registerListener("Timer", value => {
this.timerVisible = value;
})
this.registerListener("Mining abilities", value => {
this.miningAbilities = value;
})
this.registerListener("Mining abilities gui", value => {
this.miningAbilitiesGui = value;
})
this.registerListener("Mining abilities alignment", value => {
this.miningAbilitiesAlignment = value;
})
this.registerListener("Downtime tracker", value => {
this.downtimeTracker = value;
})
this.registerListener("Efficient Miner Overlay", value => {
this.efficientMinerOverlay = value;
})
this.registerListener("Collection tracker", value => {
this.collectionTracker = value;
})
this.registerListener("Collection notation", value => {
this.collectionNotation = value;
})
this.registerListener("Collection show always", value => {
this.showCollectionTrackerAlways = value;
})
this.registerListener("Show powdertracker", value => {
this.trackerVisible = value;
})
this.registerListener("Show totals", value => {
this.showTotals = value;
})
this.registerListener("Show rates", value => {
this.showRates = value;
})
this.registerListener("Alignment", value => {
this.trackerAlignment = value;
})
this.registerListener("Show naturals", value => {
this.showNaturals = value;
})
this.registerListener("Natural range", value => {
this.naturalRange = value;
})
this.registerListener("Gemstone mining stats", value => {
this.gemstoneMiningStats = value;
})
this.registerListener("Show powder sum", value => {
this.showPowderSum = value;
})
this.registerListener("Tick speed block", value => {
this.tickSpeedBlock = value;
})
this.registerListener("Tick speed block", value => {
this.tickSpeedBlock = value;
})
}
}
export default new Settings()
|