From 1efad54393a1886a879b0d3fceaf41a887d50549 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Bu=C4=8Dari=C4=87?= Date: Mon, 28 Oct 2024 17:56:44 +0100 Subject: [PATCH] Sync LunarClient Mods & Options (#181) * Sync LunarClient Mods & Options * Update version tags to 1.1.6 --------- Co-authored-by: LunarClient Bot --- .../lunarclient/apollo/mods/impl/ModChat.java | 11 ++++ .../apollo/mods/impl/ModClock.java | 49 +++++++++++----- .../apollo/mods/impl/ModCombo.java | 49 +++++++++++----- .../lunarclient/apollo/mods/impl/ModCps.java | 57 +++++++++++++------ .../apollo/mods/impl/ModDayCounter.java | 49 +++++++++++----- .../lunarclient/apollo/mods/impl/ModFps.java | 49 +++++++++++----- .../apollo/mods/impl/ModMemory.java | 49 +++++++++++----- .../apollo/mods/impl/ModMomentum.java | 49 +++++++++++----- .../apollo/mods/impl/ModPackDisplay.java | 49 +++++++++++----- .../apollo/mods/impl/ModPlaytime.java | 49 +++++++++++----- .../apollo/mods/impl/ModReachDisplay.java | 49 +++++++++++----- .../apollo/mods/impl/ModServerAddress.java | 49 +++++++++++----- .../apollo/mods/impl/ModSkyblock.java | 30 ++++++++++ .../apollo/mods/impl/ModStopwatch.java | 49 +++++++++++----- .../lunarclient/apollo/mods/impl/ModTab.java | 24 ++++---- .../apollo/mods/impl/ModTitles.java | 48 ++++++++-------- .../apollo/mods/impl/ModToggleSneak.java | 8 +-- .../apollo/mods/impl/ModWaypoints.java | 10 ++++ docs/developers/mods/chat.mdx | 8 +++ docs/developers/mods/clock.mdx | 37 ++++++++---- docs/developers/mods/combo.mdx | 37 ++++++++---- docs/developers/mods/cps.mdx | 49 ++++++++++------ docs/developers/mods/daycounter.mdx | 37 ++++++++---- docs/developers/mods/fps.mdx | 37 ++++++++---- docs/developers/mods/hypixelbedwars.mdx | 2 +- docs/developers/mods/hypixelmod.mdx | 2 +- docs/developers/mods/memory.mdx | 37 ++++++++---- docs/developers/mods/momentum.mdx | 37 ++++++++---- docs/developers/mods/neu.mdx | 2 +- docs/developers/mods/onesevenvisuals.mdx | 2 +- docs/developers/mods/packdisplay.mdx | 37 ++++++++---- docs/developers/mods/playtime.mdx | 37 ++++++++---- docs/developers/mods/reachdisplay.mdx | 37 ++++++++---- docs/developers/mods/serveraddress.mdx | 37 ++++++++---- docs/developers/mods/shulkerpreview.mdx | 2 +- docs/developers/mods/skyblock.mdx | 18 ++++++ docs/developers/mods/stopwatch.mdx | 37 ++++++++---- docs/developers/mods/tab.mdx | 20 +++---- docs/developers/mods/titles.mdx | 36 ++++++------ docs/developers/mods/togglesneak.mdx | 12 ++-- docs/developers/mods/waypoints.mdx | 6 ++ 41 files changed, 892 insertions(+), 401 deletions(-) diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModChat.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModChat.java index 0c464e31..a72f2526 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModChat.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModChat.java @@ -118,6 +118,17 @@ public final class ModChat { .notifyClient() .build(); + /** + * Requires the ping message to exactly contain your name.For example, if your name is Notch, this will ping on Notch but not Notch123. + * + * @since 1.1.6 + */ + public static final SimpleOption CHAT_PING_EXACT_MATCH = SimpleOption.builder() + .comment("Requires the ping message to exactly contain your name.For example, if your name is Notch, this will ping on Notch but not Notch123.") + .node("chat", "chat-ping-exact-match").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + /** * Copies the hovered chat message when holding the keybind and clicking. * diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModClock.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModClock.java index 57630c76..1e9d2c0c 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModClock.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModClock.java @@ -66,6 +66,26 @@ public final class ModClock { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("clock", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("clock", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModClock { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("clock", "background-width").type(TypeToken.get(Integer.class)) - .min(46).max(62) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("clock", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModClock { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("clock", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("clock", "background-width").type(TypeToken.get(Integer.class)) + .min(46).max(62) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModClock { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("clock", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("clock", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModClock { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("clock", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("clock", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModClock { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("clock", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("clock", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModCombo.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModCombo.java index fec59804..db3d956f 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModCombo.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModCombo.java @@ -66,6 +66,26 @@ public final class ModCombo { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("combo", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("combo", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModCombo { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("combo", "background-width").type(TypeToken.get(Integer.class)) - .min(46).max(62) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("combo", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModCombo { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("combo", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("combo", "background-width").type(TypeToken.get(Integer.class)) + .min(46).max(62) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModCombo { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("combo", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("combo", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModCombo { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("combo", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("combo", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModCombo { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("combo", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("combo", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModCps.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModCps.java index 25ac423d..83b71afa 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModCps.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModCps.java @@ -66,6 +66,26 @@ public final class ModCps { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("cps", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("cps", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModCps { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("cps", "background-width").type(TypeToken.get(Integer.class)) - .min(40).max(62) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("cps", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModCps { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("cps", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("cps", "background-width").type(TypeToken.get(Integer.class)) + .min(40).max(62) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModCps { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("cps", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("cps", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModCps { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("cps", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("cps", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModCps { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("cps", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("cps", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -185,8 +206,8 @@ public final class ModCps { * * @since 1.0.0 */ - public static final SimpleOption SHOW_CPSTEXT = SimpleOption.builder() - .node("cps", "show-c-p-s-text").type(TypeToken.get(Boolean.class)) + public static final SimpleOption LINE_COLOR = SimpleOption.builder() + .node("cps", "line-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -195,8 +216,8 @@ public final class ModCps { * * @since 1.0.0 */ - public static final SimpleOption LINE_COLOR = SimpleOption.builder() - .node("cps", "line-color").type(TypeToken.get(Color.class)) + public static final SimpleOption SHOW_CPSTEXT = SimpleOption.builder() + .node("cps", "show-c-p-s-text").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModDayCounter.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModDayCounter.java index 2103bffa..790a17da 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModDayCounter.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModDayCounter.java @@ -66,6 +66,26 @@ public final class ModDayCounter { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("day-counter", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("day-counter", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModDayCounter { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("day-counter", "background-width").type(TypeToken.get(Integer.class)) - .min(46).max(62) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("day-counter", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModDayCounter { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("day-counter", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("day-counter", "background-width").type(TypeToken.get(Integer.class)) + .min(46).max(62) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModDayCounter { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("day-counter", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("day-counter", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModDayCounter { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("day-counter", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("day-counter", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModDayCounter { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("day-counter", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("day-counter", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModFps.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModFps.java index c220e0a8..767cfe95 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModFps.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModFps.java @@ -66,6 +66,26 @@ public final class ModFps { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("fps", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("fps", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModFps { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("fps", "background-width").type(TypeToken.get(Integer.class)) - .min(50).max(62) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("fps", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModFps { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("fps", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("fps", "background-width").type(TypeToken.get(Integer.class)) + .min(50).max(62) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModFps { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("fps", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("fps", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModFps { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("fps", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("fps", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModFps { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("fps", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("fps", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModMemory.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModMemory.java index 8d8cfedf..2feb08fb 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModMemory.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModMemory.java @@ -66,6 +66,26 @@ public final class ModMemory { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("memory", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("memory", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModMemory { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("memory", "background-width").type(TypeToken.get(Integer.class)) - .min(46).max(62) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("memory", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModMemory { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("memory", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("memory", "background-width").type(TypeToken.get(Integer.class)) + .min(46).max(62) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModMemory { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("memory", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("memory", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModMemory { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("memory", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("memory", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModMemory { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("memory", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("memory", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModMomentum.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModMomentum.java index 7bb08a9c..bc5e5a40 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModMomentum.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModMomentum.java @@ -66,6 +66,26 @@ public final class ModMomentum { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("momentum", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("momentum", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModMomentum { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("momentum", "background-width").type(TypeToken.get(Integer.class)) - .min(50).max(62) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("momentum", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModMomentum { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("momentum", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("momentum", "background-width").type(TypeToken.get(Integer.class)) + .min(50).max(62) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModMomentum { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("momentum", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("momentum", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModMomentum { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("momentum", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("momentum", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModMomentum { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("momentum", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("momentum", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPackDisplay.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPackDisplay.java index a968bc7f..883d4931 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPackDisplay.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPackDisplay.java @@ -66,6 +66,26 @@ public final class ModPackDisplay { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("pack-display", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("pack-display", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModPackDisplay { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("pack-display", "background-width").type(TypeToken.get(Integer.class)) - .min(60).max(300) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("pack-display", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModPackDisplay { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("pack-display", "background-height").type(TypeToken.get(Integer.class)) - .min(12).max(64) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("pack-display", "background-width").type(TypeToken.get(Integer.class)) + .min(60).max(300) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModPackDisplay { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("pack-display", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("pack-display", "background-height").type(TypeToken.get(Integer.class)) + .min(12).max(64) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModPackDisplay { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("pack-display", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("pack-display", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModPackDisplay { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("pack-display", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("pack-display", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPlaytime.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPlaytime.java index ca587b75..57a67f40 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPlaytime.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPlaytime.java @@ -66,6 +66,26 @@ public final class ModPlaytime { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("playtime", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("playtime", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModPlaytime { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("playtime", "background-width").type(TypeToken.get(Integer.class)) - .min(60).max(120) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("playtime", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModPlaytime { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("playtime", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("playtime", "background-width").type(TypeToken.get(Integer.class)) + .min(60).max(120) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModPlaytime { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("playtime", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("playtime", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModPlaytime { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("playtime", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("playtime", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModPlaytime { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("playtime", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("playtime", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModReachDisplay.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModReachDisplay.java index 8b97982b..63f6a9b0 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModReachDisplay.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModReachDisplay.java @@ -66,6 +66,26 @@ public final class ModReachDisplay { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("reach-display", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("reach-display", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModReachDisplay { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("reach-display", "background-width").type(TypeToken.get(Integer.class)) - .min(40).max(72) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("reach-display", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModReachDisplay { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("reach-display", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("reach-display", "background-width").type(TypeToken.get(Integer.class)) + .min(40).max(72) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModReachDisplay { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("reach-display", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("reach-display", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModReachDisplay { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("reach-display", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("reach-display", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModReachDisplay { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("reach-display", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("reach-display", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModServerAddress.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModServerAddress.java index 0bb3ce97..90835cc4 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModServerAddress.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModServerAddress.java @@ -66,6 +66,26 @@ public final class ModServerAddress { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("server-address", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("server-address", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModServerAddress { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("server-address", "background-width").type(TypeToken.get(Integer.class)) - .min(40).max(62) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("server-address", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModServerAddress { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("server-address", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("server-address", "background-width").type(TypeToken.get(Integer.class)) + .min(40).max(62) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModServerAddress { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("server-address", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("server-address", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModServerAddress { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("server-address", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("server-address", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModServerAddress { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("server-address", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("server-address", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModSkyblock.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModSkyblock.java index 05497b5d..f151b8ad 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModSkyblock.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModSkyblock.java @@ -170,6 +170,36 @@ public final class ModSkyblock { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption SKY_BLOCK_WISHING_COMPASS = SimpleOption.builder() + .node("skyblock", "sky-block-wishing-compass").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption SKY_BLOCK_METAL_DETECTOR = SimpleOption.builder() + .node("skyblock", "sky-block-metal-detector").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption SKY_BLOCK_FINISHED_COMMISSIONS = SimpleOption.builder() + .node("skyblock", "sky-block-finished-commissions").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + /** * Fixes your fishing bobber sinking in lava. * diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModStopwatch.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModStopwatch.java index 08bda120..4eeca98e 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModStopwatch.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModStopwatch.java @@ -66,6 +66,26 @@ public final class ModStopwatch { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption BRACKETS = SimpleOption.builder() + .node("stopwatch", "brackets").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption BRACKET_COLOR = SimpleOption.builder() + .node("stopwatch", "bracket-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * No documentation available. * @@ -88,13 +108,13 @@ public final class ModStopwatch { .build(); /** - * No documentation available. + * If this is disabled the background will change size with the text. * - * @since 1.0.0 + * @since 1.1.6 */ - public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() - .node("stopwatch", "background-width").type(TypeToken.get(Integer.class)) - .min(44).max(120) + public static final SimpleOption STATIC_BACKGROUND_HEIGHT = SimpleOption.builder() + .comment("If this is disabled the background will change size with the text.") + .node("stopwatch", "static-background-height").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -103,9 +123,9 @@ public final class ModStopwatch { * * @since 1.0.0 */ - public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() - .node("stopwatch", "background-height").type(TypeToken.get(Integer.class)) - .min(10).max(22) + public static final NumberOption BACKGROUND_WIDTH = NumberOption.number() + .node("stopwatch", "background-width").type(TypeToken.get(Integer.class)) + .min(44).max(120) .notifyClient() .build(); @@ -114,8 +134,9 @@ public final class ModStopwatch { * * @since 1.0.0 */ - public static final SimpleOption BRACKETS = SimpleOption.builder() - .node("stopwatch", "brackets").type(TypeToken.get(Boolean.class)) + public static final NumberOption BACKGROUND_HEIGHT = NumberOption.number() + .node("stopwatch", "background-height").type(TypeToken.get(Integer.class)) + .min(10).max(22) .notifyClient() .build(); @@ -145,8 +166,8 @@ public final class ModStopwatch { * * @since 1.0.0 */ - public static final SimpleOption TEXT_COLOR = SimpleOption.builder() - .node("stopwatch", "text-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BORDER_COLOR = SimpleOption.builder() + .node("stopwatch", "border-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -165,8 +186,8 @@ public final class ModStopwatch { * * @since 1.0.0 */ - public static final SimpleOption BORDER_COLOR = SimpleOption.builder() - .node("stopwatch", "border-color").type(TypeToken.get(Color.class)) + public static final SimpleOption TEXT_COLOR = SimpleOption.builder() + .node("stopwatch", "text-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModTab.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModTab.java index 7a0a62b4..4caa91ef 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModTab.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModTab.java @@ -216,16 +216,6 @@ public final class ModTab { .notifyClient() .build(); - /** - * No documentation available. - * - * @since 1.0.0 - */ - public static final SimpleOption DYNAMIC_PING_COLOR = SimpleOption.builder() - .node("tab", "dynamic-ping-color").type(TypeToken.get(Boolean.class)) - .notifyClient() - .build(); - /** * No documentation available. * @@ -241,8 +231,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption PING_NUMBER_COLOR = SimpleOption.builder() - .node("tab", "ping-number-color").type(TypeToken.get(Color.class)) + public static final SimpleOption DYNAMIC_PING_COLOR = SimpleOption.builder() + .node("tab", "dynamic-ping-color").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -286,6 +276,16 @@ public final class ModTab { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + public static final SimpleOption PING_NUMBER_COLOR = SimpleOption.builder() + .node("tab", "ping-number-color").type(TypeToken.get(Color.class)) + .notifyClient() + .build(); + /** * An option to toggle LC logos in player list tab overlay. * diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModTitles.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModTitles.java index 0ce8b09a..93e99f52 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModTitles.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModTitles.java @@ -67,64 +67,64 @@ public final class ModTitles { .build(); /** - * Keep the title centered around the center of the mod on-screen. + * No documentation available. * - * @since 1.1.2 + * @since 1.0.0 */ - public static final SimpleOption KEEP_TITLE_CENTERED = SimpleOption.builder() - .comment("Keep the title centered around the center of the mod on-screen") - .node("titles", "keep-title-centered").type(TypeToken.get(Boolean.class)) + public static final SimpleOption TITLE_COLOR = SimpleOption.builder() + .node("titles", "title-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); /** - * Show title of height limit display. + * No documentation available. * - * @since 1.1.5 + * @since 1.0.0 */ - public static final SimpleOption SHOW_TITLE = SimpleOption.builder() - .comment("Show title of height limit display") - .node("titles", "show-title").type(TypeToken.get(Boolean.class)) + public static final SimpleOption SUBTITLE_COLOR = SimpleOption.builder() + .node("titles", "subtitle-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); /** * No documentation available. * - * @since 1.1.5 + * @since 1.1.3 */ - public static final SimpleOption SHOW_SUBTITLE = SimpleOption.builder() - .node("titles", "show-subtitle").type(TypeToken.get(Boolean.class)) + public static final SimpleOption USE_MINECRAFT_GUISCALE = SimpleOption.builder() + .node("titles", "use-minecraft-g-u-i-scale").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); /** - * No documentation available. + * Keep the title centered around the center of the mod on-screen. * - * @since 1.0.0 + * @since 1.1.2 */ - public static final SimpleOption TITLE_COLOR = SimpleOption.builder() - .node("titles", "title-color").type(TypeToken.get(Color.class)) + public static final SimpleOption KEEP_TITLE_CENTERED = SimpleOption.builder() + .comment("Keep the title centered around the center of the mod on-screen") + .node("titles", "keep-title-centered").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); /** - * No documentation available. + * Show title of height limit display. * - * @since 1.0.0 + * @since 1.1.5 */ - public static final SimpleOption SUBTITLE_COLOR = SimpleOption.builder() - .node("titles", "subtitle-color").type(TypeToken.get(Color.class)) + public static final SimpleOption SHOW_TITLE = SimpleOption.builder() + .comment("Show title of height limit display") + .node("titles", "show-title").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); /** * No documentation available. * - * @since 1.1.3 + * @since 1.1.5 */ - public static final SimpleOption USE_MINECRAFT_GUISCALE = SimpleOption.builder() - .node("titles", "use-minecraft-g-u-i-scale").type(TypeToken.get(Boolean.class)) + public static final SimpleOption SHOW_SUBTITLE = SimpleOption.builder() + .node("titles", "show-subtitle").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModToggleSneak.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModToggleSneak.java index bede3eb1..d1394391 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModToggleSneak.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModToggleSneak.java @@ -69,8 +69,8 @@ public final class ModToggleSneak { * * @since 1.0.0 */ - public static final SimpleOption DOUBLE_TAP = SimpleOption.builder() - .node("toggle-sneak", "double-tap").type(TypeToken.get(Boolean.class)) + public static final SimpleOption TOGGLE_SNEAK_CONTAINER = SimpleOption.builder() + .node("toggle-sneak", "toggle-sneak-container").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -79,8 +79,8 @@ public final class ModToggleSneak { * * @since 1.0.0 */ - public static final SimpleOption TOGGLE_SNEAK_CONTAINER = SimpleOption.builder() - .node("toggle-sneak", "toggle-sneak-container").type(TypeToken.get(Boolean.class)) + public static final SimpleOption DOUBLE_TAP = SimpleOption.builder() + .node("toggle-sneak", "double-tap").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModWaypoints.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModWaypoints.java index 4f9dcfbb..c5284a60 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModWaypoints.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModWaypoints.java @@ -139,6 +139,16 @@ public final class ModWaypoints { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.1.6 + */ + public static final SimpleOption ADD_WAYPOINTS_FROM_CHAT = SimpleOption.builder() + .node("waypoints", "add-waypoints-from-chat").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + /** * Adds a waypoint if coordinates are clicked in chat. * diff --git a/docs/developers/mods/chat.mdx b/docs/developers/mods/chat.mdx index 4008e9d6..4c935322 100644 --- a/docs/developers/mods/chat.mdx +++ b/docs/developers/mods/chat.mdx @@ -67,6 +67,14 @@ public void toggleChatExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`CHAT_PING_EXACT_MATCH`__ + - Requires the ping message to exactly contain your name. +For example, if your name is Notch, this will ping on Notch but not Notch123. + - Config Key: `chat-ping-exact-match` + - Values + - Type: `Boolean` + - Default: `false` + - __`COPY_CHAT`__ - Copies the hovered chat message when holding the keybind and clicking. - Config Key: `copy-chat` diff --git a/docs/developers/mods/clock.mdx b/docs/developers/mods/clock.mdx index 22326655..917c4e51 100644 --- a/docs/developers/mods/clock.mdx +++ b/docs/developers/mods/clock.mdx @@ -35,6 +35,18 @@ public void toggleClockExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleClockExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleClockExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleClockExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,11 +109,11 @@ public void toggleClockExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` - __`MILITARY_TIME`__ - Config Key: `military-time` diff --git a/docs/developers/mods/combo.mdx b/docs/developers/mods/combo.mdx index 199a7407..b59061b6 100644 --- a/docs/developers/mods/combo.mdx +++ b/docs/developers/mods/combo.mdx @@ -35,6 +35,18 @@ public void toggleComboCounterExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleComboCounterExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleComboCounterExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleComboCounterExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,9 +109,9 @@ public void toggleComboCounterExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` diff --git a/docs/developers/mods/cps.mdx b/docs/developers/mods/cps.mdx index aa3a2807..e6087cda 100644 --- a/docs/developers/mods/cps.mdx +++ b/docs/developers/mods/cps.mdx @@ -35,6 +35,18 @@ public void toggleCPSExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleCPSExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleCPSExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleCPSExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,11 +109,11 @@ public void toggleCPSExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` - __`RIGHT_CLICK`__ - Config Key: `right-click` @@ -108,15 +121,15 @@ public void toggleCPSExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`SHOW_CPSTEXT`__ - - Config Key: `show-c-p-s-text` - - Values - - Type: `Boolean` - - Default: `true` - - __`LINE_COLOR`__ - Config Key: `line-color` - Values - Type: `String` - Default: `#FF202020` +- __`SHOW_CPSTEXT`__ + - Config Key: `show-c-p-s-text` + - Values + - Type: `Boolean` + - Default: `true` + diff --git a/docs/developers/mods/daycounter.mdx b/docs/developers/mods/daycounter.mdx index a73ed42a..84208afa 100644 --- a/docs/developers/mods/daycounter.mdx +++ b/docs/developers/mods/daycounter.mdx @@ -35,6 +35,18 @@ public void toggleDayCounterExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleDayCounterExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleDayCounterExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleDayCounterExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,11 +109,11 @@ public void toggleDayCounterExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` - __`USE_WORLD_TYPE`__ - Config Key: `use-world-type` diff --git a/docs/developers/mods/fps.mdx b/docs/developers/mods/fps.mdx index 72d78478..32b413f0 100644 --- a/docs/developers/mods/fps.mdx +++ b/docs/developers/mods/fps.mdx @@ -35,6 +35,18 @@ public void toggleFPSExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleFPSExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleFPSExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleFPSExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,9 +109,9 @@ public void toggleFPSExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` diff --git a/docs/developers/mods/hypixelbedwars.mdx b/docs/developers/mods/hypixelbedwars.mdx index 70c21290..8f4f0436 100644 --- a/docs/developers/mods/hypixelbedwars.mdx +++ b/docs/developers/mods/hypixelbedwars.mdx @@ -19,7 +19,7 @@ public void toggleHypixelBedwarsExample(Player viewer, boolean value) { - Config Key: `enabled` - Values - Type: `Boolean` - - Default: `false` + - Default: `true` - __`COLORED_BEDS`__ - Recolor the beds in-game according to the team's color diff --git a/docs/developers/mods/hypixelmod.mdx b/docs/developers/mods/hypixelmod.mdx index bdd246ac..e36f8b73 100644 --- a/docs/developers/mods/hypixelmod.mdx +++ b/docs/developers/mods/hypixelmod.mdx @@ -19,7 +19,7 @@ public void toggleHypixelModsExample(Player viewer, boolean value) { - Config Key: `enabled` - Values - Type: `Boolean` - - Default: `false` + - Default: `true` - __`REMOVE_GUILD_ON_TAB`__ - Config Key: `remove-guild-on-tab` diff --git a/docs/developers/mods/memory.mdx b/docs/developers/mods/memory.mdx index 8aa8f65d..eba8b925 100644 --- a/docs/developers/mods/memory.mdx +++ b/docs/developers/mods/memory.mdx @@ -35,6 +35,18 @@ public void toggleMemoryUsageExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleMemoryUsageExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleMemoryUsageExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleMemoryUsageExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,11 +109,11 @@ public void toggleMemoryUsageExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` - __`COLOR_BASED_ON_USAGE`__ - Config Key: `color-based-on-usage` diff --git a/docs/developers/mods/momentum.mdx b/docs/developers/mods/momentum.mdx index e75150a1..7b4dc3d7 100644 --- a/docs/developers/mods/momentum.mdx +++ b/docs/developers/mods/momentum.mdx @@ -35,6 +35,18 @@ public void toggleMomentumModExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleMomentumModExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleMomentumModExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleMomentumModExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,11 +109,11 @@ public void toggleMomentumModExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` - __`USE_GROUND_SPEED`__ - If enabled then Y velocity is not used in the final speed. diff --git a/docs/developers/mods/neu.mdx b/docs/developers/mods/neu.mdx index 08a8cd9d..919c12a6 100644 --- a/docs/developers/mods/neu.mdx +++ b/docs/developers/mods/neu.mdx @@ -19,5 +19,5 @@ public void toggleNotEnoughUpdatesExample(Player viewer, boolean value) { - Config Key: `enabled` - Values - Type: `Boolean` - - Default: `false` + - Default: `true` diff --git a/docs/developers/mods/onesevenvisuals.mdx b/docs/developers/mods/onesevenvisuals.mdx index 917ff16e..a6eec985 100644 --- a/docs/developers/mods/onesevenvisuals.mdx +++ b/docs/developers/mods/onesevenvisuals.mdx @@ -19,5 +19,5 @@ public void toggle17VisualsExample(Player viewer, boolean value) { - Config Key: `enabled` - Values - Type: `Boolean` - - Default: `false` + - Default: `true` diff --git a/docs/developers/mods/packdisplay.mdx b/docs/developers/mods/packdisplay.mdx index 6e8569fd..38ed2e04 100644 --- a/docs/developers/mods/packdisplay.mdx +++ b/docs/developers/mods/packdisplay.mdx @@ -35,6 +35,18 @@ public void togglePackDisplayExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void togglePackDisplayExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void togglePackDisplayExample(Player viewer, boolean value) { - Minimum: `12` - Maximum: `64` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void togglePackDisplayExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,11 +109,11 @@ public void togglePackDisplayExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` - __`PACK_ICON`__ - Config Key: `pack-icon` diff --git a/docs/developers/mods/playtime.mdx b/docs/developers/mods/playtime.mdx index a15b7451..296926bc 100644 --- a/docs/developers/mods/playtime.mdx +++ b/docs/developers/mods/playtime.mdx @@ -35,6 +35,18 @@ public void togglePlaytimeExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void togglePlaytimeExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void togglePlaytimeExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void togglePlaytimeExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,9 +109,9 @@ public void togglePlaytimeExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` diff --git a/docs/developers/mods/reachdisplay.mdx b/docs/developers/mods/reachdisplay.mdx index 8df23182..f018f52e 100644 --- a/docs/developers/mods/reachdisplay.mdx +++ b/docs/developers/mods/reachdisplay.mdx @@ -35,6 +35,18 @@ public void toggleReachDisplayExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleReachDisplayExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleReachDisplayExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleReachDisplayExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,9 +109,9 @@ public void toggleReachDisplayExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` diff --git a/docs/developers/mods/serveraddress.mdx b/docs/developers/mods/serveraddress.mdx index a47ac851..2b7c184f 100644 --- a/docs/developers/mods/serveraddress.mdx +++ b/docs/developers/mods/serveraddress.mdx @@ -35,6 +35,18 @@ public void toggleServerAddressExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleServerAddressExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleServerAddressExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleServerAddressExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,11 +109,11 @@ public void toggleServerAddressExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` - __`SERVER_ICON`__ - Config Key: `server-icon` diff --git a/docs/developers/mods/shulkerpreview.mdx b/docs/developers/mods/shulkerpreview.mdx index d5d85b51..9d03686c 100644 --- a/docs/developers/mods/shulkerpreview.mdx +++ b/docs/developers/mods/shulkerpreview.mdx @@ -19,7 +19,7 @@ public void toggleShulkerPreviewExample(Player viewer, boolean value) { - Config Key: `enabled` - Values - Type: `Boolean` - - Default: `false` + - Default: `true` - __`ALWAYS_PREVIEW`__ - Config Key: `always-preview` diff --git a/docs/developers/mods/skyblock.mdx b/docs/developers/mods/skyblock.mdx index 98eb36fc..08b3dd8c 100644 --- a/docs/developers/mods/skyblock.mdx +++ b/docs/developers/mods/skyblock.mdx @@ -100,6 +100,24 @@ public void toggleHypixelSkyblockExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` +- __`SKY_BLOCK_WISHING_COMPASS`__ + - Config Key: `sky-block-wishing-compass` + - Values + - Type: `Boolean` + - Default: `false` + +- __`SKY_BLOCK_METAL_DETECTOR`__ + - Config Key: `sky-block-metal-detector` + - Values + - Type: `Boolean` + - Default: `false` + +- __`SKY_BLOCK_FINISHED_COMMISSIONS`__ + - Config Key: `sky-block-finished-commissions` + - Values + - Type: `Boolean` + - Default: `false` + - __`FIX_LAVA_BOBBER`__ - Fixes your fishing bobber sinking in lava. - Config Key: `fix-lava-bobber` diff --git a/docs/developers/mods/stopwatch.mdx b/docs/developers/mods/stopwatch.mdx index db4e4c72..d6a8edec 100644 --- a/docs/developers/mods/stopwatch.mdx +++ b/docs/developers/mods/stopwatch.mdx @@ -35,6 +35,18 @@ public void toggleStopwatchExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`BRACKETS`__ + - Config Key: `brackets` + - Values + - Type: `Boolean` + - Default: `true` + +- __`BRACKET_COLOR`__ + - Config Key: `bracket-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + - __`BACKGROUND`__ - Config Key: `background` - Values @@ -48,6 +60,13 @@ public void toggleStopwatchExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` +- __`STATIC_BACKGROUND_HEIGHT`__ + - If this is disabled the background will change size with the text. + - Config Key: `static-background-height` + - Values + - Type: `Boolean` + - Default: `true` + - __`BACKGROUND_WIDTH`__ - Config Key: `background-width` - Values @@ -64,12 +83,6 @@ public void toggleStopwatchExample(Player viewer, boolean value) { - Minimum: `10` - Maximum: `22` -- __`BRACKETS`__ - - Config Key: `brackets` - - Values - - Type: `Boolean` - - Default: `true` - - __`BORDER`__ - Config Key: `border` - Values @@ -84,11 +97,11 @@ public void toggleStopwatchExample(Player viewer, boolean value) { - Minimum: `0.5F` - Maximum: `3.0F` -- __`TEXT_COLOR`__ - - Config Key: `text-color` +- __`BORDER_COLOR`__ + - Config Key: `border-color` - Values - Type: `String` - - Default: `#FFFFFFFF` + - Default: `#9F000000` - __`BACKGROUND_COLOR`__ - Config Key: `background-color` @@ -96,11 +109,11 @@ public void toggleStopwatchExample(Player viewer, boolean value) { - Type: `String` - Default: `#6F000000` -- __`BORDER_COLOR`__ - - Config Key: `border-color` +- __`TEXT_COLOR`__ + - Config Key: `text-color` - Values - Type: `String` - - Default: `#9F000000` + - Default: `#FFFFFFFF` - __`RESET_EVERY_START`__ - Config Key: `reset-every-start` diff --git a/docs/developers/mods/tab.mdx b/docs/developers/mods/tab.mdx index 31850a9c..610a3a1d 100644 --- a/docs/developers/mods/tab.mdx +++ b/docs/developers/mods/tab.mdx @@ -125,23 +125,17 @@ public void toggleTabEditorExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`DYNAMIC_PING_COLOR`__ - - Config Key: `dynamic-ping-color` - - Values - - Type: `Boolean` - - Default: `false` - - __`PING_NUMBER_SHADOW`__ - Config Key: `ping-number-shadow` - Values - Type: `Boolean` - Default: `false` -- __`PING_NUMBER_COLOR`__ - - Config Key: `ping-number-color` +- __`DYNAMIC_PING_COLOR`__ + - Config Key: `dynamic-ping-color` - Values - - Type: `String` - - Default: `#FFFFFF55` + - Type: `Boolean` + - Default: `false` - __`LOW_PING_NUMBER_COLOR`__ - Config Key: `low-ping-number-color` @@ -167,3 +161,9 @@ public void toggleTabEditorExample(Player viewer, boolean value) { - Type: `String` - Default: `#FFAA0000` +- __`PING_NUMBER_COLOR`__ + - Config Key: `ping-number-color` + - Values + - Type: `String` + - Default: `#FFFFFF55` + diff --git a/docs/developers/mods/titles.mdx b/docs/developers/mods/titles.mdx index cdd9f836..5eb98f30 100644 --- a/docs/developers/mods/titles.mdx +++ b/docs/developers/mods/titles.mdx @@ -35,6 +35,24 @@ public void toggleTitlesExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` +- __`TITLE_COLOR`__ + - Config Key: `title-color` + - Values + - Type: `String` + - Default: `#FFFF5555` + +- __`SUBTITLE_COLOR`__ + - Config Key: `subtitle-color` + - Values + - Type: `String` + - Default: `#FFFFFFFF` + +- __`USE_MINECRAFT_GUISCALE`__ + - Config Key: `use-minecraft-g-u-i-scale` + - Values + - Type: `Boolean` + - Default: `true` + - __`KEEP_TITLE_CENTERED`__ - Keep the title centered around the center of the mod on-screen - Config Key: `keep-title-centered` @@ -55,21 +73,3 @@ public void toggleTitlesExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` -- __`TITLE_COLOR`__ - - Config Key: `title-color` - - Values - - Type: `String` - - Default: `#FFFF5555` - -- __`SUBTITLE_COLOR`__ - - Config Key: `subtitle-color` - - Values - - Type: `String` - - Default: `#FFFFFFFF` - -- __`USE_MINECRAFT_GUISCALE`__ - - Config Key: `use-minecraft-g-u-i-scale` - - Values - - Type: `Boolean` - - Default: `true` - diff --git a/docs/developers/mods/togglesneak.mdx b/docs/developers/mods/togglesneak.mdx index db8d2198..e6e17485 100644 --- a/docs/developers/mods/togglesneak.mdx +++ b/docs/developers/mods/togglesneak.mdx @@ -33,18 +33,18 @@ public void toggleToggleSneakSprintExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`DOUBLE_TAP`__ - - Config Key: `double-tap` - - Values - - Type: `Boolean` - - Default: `true` - - __`TOGGLE_SNEAK_CONTAINER`__ - Config Key: `toggle-sneak-container` - Values - Type: `Boolean` - Default: `false` +- __`DOUBLE_TAP`__ + - Config Key: `double-tap` + - Values + - Type: `Boolean` + - Default: `true` + - __`FLY_BOOST`__ - Config Key: `fly-boost` - Values diff --git a/docs/developers/mods/waypoints.mdx b/docs/developers/mods/waypoints.mdx index 30756b1e..24a60903 100644 --- a/docs/developers/mods/waypoints.mdx +++ b/docs/developers/mods/waypoints.mdx @@ -83,3 +83,9 @@ public void toggleWaypointsExample(Player viewer, boolean value) { - Minimum: `0.1F` - Maximum: `3.0F` +- __`ADD_WAYPOINTS_FROM_CHAT`__ + - Config Key: `add-waypoints-from-chat` + - Values + - Type: `Boolean` + - Default: `true` +