From d1a9b5b3ea2a4a140fc1aa34db3ad8a79822391c Mon Sep 17 00:00:00 2001 From: "Erymanthus[#5074] | (u/)RayDeeUx" <51521765+RayDeeUx@users.noreply.github.com> Date: Sat, 14 Oct 2023 08:00:41 -0400 Subject: Addition: Ingame time GUI element (#503) Added In-Game Date Display. #503 --- .../hannibal2/skyhanni/config/features/GUIConfig.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java index 47b62e9e5..9403ebfc2 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GUIConfig.java @@ -94,6 +94,25 @@ public class GUIConfig { @Expose public Position realTimePosition = new Position(10, 10, false, true); + @Expose + @ConfigOption(name = "In-game Date", desc = "Show the in-game date of SkyBlock (like in Apec, §ebut with mild delays§7).\n(Though this one includes the SkyBlock year!)") + @ConfigEditorBoolean + @FeatureToggle + public boolean inGameDateDisplay = true; + + @Expose + public Position inGameDateDisplayPosition = new Position(10, 10, false, true); + + @Expose + @ConfigOption(name = "In-game Date Refresh Rate", desc = "Change the amount of time in seconds you would like to refresh the in-game time display.") + @ConfigEditorSlider( + minValue = 1, + maxValue = 60, + minStep = 1 + ) + public int inGameDateDisplayRefreshSeconds = 10; + + @Expose @ConfigOption(name = "TPS Display", desc = "Show the TPS of the current server, like in Soopy.") @ConfigEditorBoolean -- cgit