From 55aee2c8793c03cf3ba8539535c83897d694ee60 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 3 Aug 2023 17:07:30 +0200 Subject: Added option to only show the reputation helper while pressing a hotkey. --- .../at/hannibal2/skyhanni/config/features/MiscConfig.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java index e04404ed8..a1741affb 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -111,6 +111,19 @@ public class MiscConfig { @ConfigAccordionId(id = 6) public boolean crimsonIsleReputationHelper = true; + @Expose + @ConfigOption(name = "Use Hotkey", desc = "Only show the reputation helper while pressing the hotkey.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 6) + public boolean reputationHelperUseHotkey = false; + + @Expose + @ConfigOption(name = "Hotkey", desc = "Press this hotkey to show the reputation helper.") + @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) + @ConfigAccordionId(id = 6) + public int reputationHelperHotkey = Keyboard.KEY_NONE; + + @Expose public Position crimsonIsleReputationHelperPos = new Position(10, 10, false, true); -- cgit