diff options
| author | HiZe_ <superhize@hotmail.com> | 2023-07-24 13:26:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-24 13:26:18 +0200 |
| commit | 2c61e4e7ee05a5ebb7d3012d1aae6a6e3aa4d04e (patch) | |
| tree | 24a99702b825ef7f6de5bba6ad0478684366717e /src/main/java/at/hannibal2/skyhanni/config/features | |
| parent | 450a0a003d687ae16448734ebef25acfb17cdde4 (diff) | |
| download | skyhanni-2c61e4e7ee05a5ebb7d3012d1aae6a6e3aa4d04e.tar.gz skyhanni-2c61e4e7ee05a5ebb7d3012d1aae6a6e3aa4d04e.tar.bz2 skyhanni-2c61e4e7ee05a5ebb7d3012d1aae6a6e3aa4d04e.zip | |
add npc motes sell value for current opened chest (#317)
Co-authored-by: superhize <superhize@gmail.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java | 21 |
1 files changed, 21 insertions, 0 deletions
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 |
