From 2c61e4e7ee05a5ebb7d3012d1aae6a6e3aa4d04e Mon Sep 17 00:00:00 2001 From: HiZe_ Date: Mon, 24 Jul 2023 13:26:18 +0200 Subject: add npc motes sell value for current opened chest (#317) Co-authored-by: superhize Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../skyhanni/config/features/RiftConfig.java | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java index af531667f..48882f49e 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java @@ -566,6 +566,27 @@ public class RiftConfig { @ConfigOption(name = "Burger Stacks", desc = "Set your McGrubber's burger stacks.") @ConfigEditorSlider(minStep = 1, minValue = 0, maxValue = 5) public int burgerStacks = 0; + + @Expose + @ConfigOption(name = "Inventory value", desc = "") + @Accordion + public InventoryValue inventoryValue = new InventoryValue(); + + public static class InventoryValue { + @Expose + @ConfigOption(name = "Inventory value", desc = "Show total Motes NPC price for the current opened inventory.") + @ConfigEditorBoolean + public boolean enabled = true; + + @Expose + @ConfigOption(name = "Number format type", desc = "Short: 1.2M\n" + + "Long: 1,200,000") + @ConfigEditorDropdown(values = {"Short", "Long"}) + public int formatType = 0; + + @Expose + public Position position = new Position(126, 156, false, true); + } } @Expose -- cgit