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
|
package at.hannibal2.skyhanni.config.features.misc;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.utils.ItemPriceSource;
import at.hannibal2.skyhanni.utils.tracker.SkyHanniTracker;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorDropdown;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
import io.github.notenoughupdates.moulconfig.observer.Property;
public class TrackerConfig {
@Expose
@ConfigOption(name = "Hide with Item Value", desc = "Hide all trackers while the Estimated Item Value is visible.")
@ConfigEditorBoolean
public boolean hideInEstimatedItemValue = true;
@Expose
@ConfigOption(name = "Change Price Source", desc = "Change what price to use: Bazaar (Sell Offer or Buy Order) or NPC.")
@ConfigEditorDropdown
public ItemPriceSource priceSource = ItemPriceSource.BAZAAR_INSTANT_BUY;
@Expose
@ConfigOption(name = "Default Display Mode", desc = "Change the display mode that gets shown on default.")
@ConfigEditorDropdown
public Property<SkyHanniTracker.DefaultDisplayMode> defaultDisplayMode = Property.of(SkyHanniTracker.DefaultDisplayMode.REMEMBER_LAST);
@Expose
@ConfigOption(name = "Recent Drops", desc = "Highlight the amount in green on recently gained items.")
@ConfigEditorBoolean
public boolean showRecentDrops = true;
@Expose
@ConfigOption(name = "Exclude Hidden", desc = "Exclude hidden items in the total price calculation.")
@ConfigEditorBoolean
public boolean excludeHiddenItemsInPrice = false;
@Expose
@ConfigOption(name = "Item Warnings", desc = "Item Warnings")
@Accordion
public TrackerItemWarningsConfig warnings = new TrackerItemWarningsConfig();
public static class TrackerItemWarningsConfig {
@Expose
@ConfigOption(name = "Price in Chat", desc = "Show an extra chat message when you pick up an expensive item. " +
"(This contains name, amount and price)")
@ConfigEditorBoolean
@FeatureToggle
public boolean chat = true;
@Expose
@ConfigOption(name = "Minimum Price", desc = "Items below this price will not show up in chat.")
@ConfigEditorSlider(minValue = 1, maxValue = 20_000_000, minStep = 1)
public int minimumChat = 5_000_000;
@Expose
@ConfigOption(name = "Title Warning", desc = "Show a title for expensive item pickups.")
@ConfigEditorBoolean
@FeatureToggle
public boolean title = true;
@Expose
@ConfigOption(name = "Title Price", desc = "Items above this price will show up as a title.")
@ConfigEditorSlider(minValue = 1, maxValue = 50_000_000, minStep = 1)
public int minimumTitle = 5_000_000;
}
@Expose
@ConfigOption(name = "Hide Cheap Items", desc = "Hide cheap items.")
@Accordion
public HideCheapItemsConfig hideCheapItems = new HideCheapItemsConfig();
public static class HideCheapItemsConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Limit how many items should be shown.")
@ConfigEditorBoolean
public Property<Boolean> enabled = Property.of(true);
@Expose
@ConfigOption(name = "Show Expensive #", desc = "Always show the # most expensive items.")
@ConfigEditorSlider(minValue = 1, maxValue = 40, minStep = 1)
public Property<Integer> alwaysShowBest = Property.of(8);
@Expose
@ConfigOption(name = "Still Show Above", desc = "Always show items above this §6price in 1k §7even when not in the top # of items.")
@ConfigEditorSlider(minValue = 5, maxValue = 500, minStep = 5)
public Property<Integer> minPrice = Property.of(100);
}
@Expose
@ConfigOption(name = "Hide outside Inventory", desc = "Hide Profit Trackers while not inside an inventory.")
@ConfigEditorBoolean
public boolean hideItemTrackersOutsideInventory = false;
}
|