From 4d1fcf5b07f14d40b78e25ecf7fd0eabf5733864 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 14 Apr 2023 15:55:23 +0200 Subject: Added Jacob's Contest Warning - Show a warning shortly before a new jacob contest starts. --- .../at/hannibal2/skyhanni/config/features/Garden.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index c539d4c3a..0bc133a87 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -660,6 +660,22 @@ public class Garden { @ConfigAccordionId(id = 14) public boolean nextJacobContestOtherGuis = false; + @Expose + @ConfigOption(name = "Warning", desc = "Show a warning shortly before a new jacob contest starts.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 14) + public boolean nextJacobContestWarn = false; + + @Expose + @ConfigOption(name = "Warning Time", desc = "Set the warning time in seconds before the Jacobs contest begins.") + @ConfigEditorSlider( + minValue = 10, + maxValue = 60 * 5, + minStep = 1 + ) + @ConfigAccordionId(id = 21) + public int nextJacobContestWarnTime = 60 * 2; + @Expose public Position nextJacobContestPos = new Position(-278, 11, false, true); -- cgit