From c7823efaf84a37ac14890e1748a77fca095c73ca Mon Sep 17 00:00:00 2001 From: LunarClient Bot Date: Fri, 18 Oct 2024 04:17:07 +0000 Subject: [PATCH] Sync LunarClient Mods & Options --- .../apollo/mods/impl/ModBlockOutline.java | 48 ++++---- .../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/ModGlintColorizer.java | 1 + .../apollo/mods/impl/ModHitbox.java | 83 +++++++------- .../apollo/mods/impl/ModHurtCam.java | 1 + .../apollo/mods/impl/ModHypixelBedwars.java | 17 +-- .../apollo/mods/impl/ModHypixelMod.java | 21 ++-- .../apollo/mods/impl/ModItemTracker.java | 17 +-- .../apollo/mods/impl/ModMemory.java | 49 +++++--- .../apollo/mods/impl/ModMomentum.java | 49 +++++--- .../apollo/mods/impl/ModPackDisplay.java | 49 +++++--- .../apollo/mods/impl/ModPackOrganizer.java | 1 + .../apollo/mods/impl/ModPlaytime.java | 49 +++++--- .../apollo/mods/impl/ModPotionEffects.java | 21 ++-- .../apollo/mods/impl/ModReachDisplay.java | 49 +++++--- .../apollo/mods/impl/ModServerAddress.java | 49 +++++--- .../apollo/mods/impl/ModShinyPots.java | 9 +- .../apollo/mods/impl/ModSkyblock.java | 41 ++++++- .../apollo/mods/impl/ModStopwatch.java | 49 +++++--- .../lunarclient/apollo/mods/impl/ModTab.java | 105 ++++++++++-------- .../apollo/mods/impl/ModTitles.java | 48 ++++---- .../apollo/mods/impl/ModToggleSneak.java | 8 +- .../apollo/mods/impl/ModWaypoints.java | 10 ++ docs/developers/mods/blockoutline.mdx | 28 ----- 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/glintcolorizer.mdx | 6 - docs/developers/mods/hitbox.mdx | 30 ----- docs/developers/mods/hurtcam.mdx | 6 - docs/developers/mods/hypixelbedwars.mdx | 7 -- docs/developers/mods/hypixelmod.mdx | 6 - docs/developers/mods/itemtracker.mdx | 6 - docs/developers/mods/memory.mdx | 37 ++++-- docs/developers/mods/momentum.mdx | 37 ++++-- docs/developers/mods/packdisplay.mdx | 37 ++++-- docs/developers/mods/packorganizer.mdx | 6 - docs/developers/mods/playtime.mdx | 37 ++++-- docs/developers/mods/potioneffects.mdx | 6 - docs/developers/mods/reachdisplay.mdx | 37 ++++-- docs/developers/mods/serveraddress.mdx | 37 ++++-- docs/developers/mods/shinypots.mdx | 6 - docs/developers/mods/skyblock.mdx | 17 ++- docs/developers/mods/stopwatch.mdx | 37 ++++-- docs/developers/mods/tab.mdx | 63 ++--------- docs/developers/mods/titles.mdx | 36 +++--- docs/developers/mods/togglesneak.mdx | 12 +- docs/developers/mods/waypoints.mdx | 6 + 56 files changed, 1051 insertions(+), 692 deletions(-) diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModBlockOutline.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModBlockOutline.java index ad8c8dea..1272a5c3 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModBlockOutline.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModBlockOutline.java @@ -99,17 +99,6 @@ public final class ModBlockOutline { .notifyClient() .build(); - /** - * If the exact block bounding box should be used, this comes at a slight performance cost. - * - * @since 1.0.9 - */ - public static final SimpleOption BLOCK_OUTLINE_ACCURATE = SimpleOption.builder() - .comment("If the exact block bounding box should be used, this comes at a slight performance cost") - .node("block-outline", "block-outline-accurate").type(TypeToken.get(Boolean.class)) - .notifyClient() - .build(); - /** * If the outline colors should travel through the block. * @@ -175,17 +164,6 @@ public final class ModBlockOutline { .notifyClient() .build(); - /** - * If the exact block bounding box should be used, this comes at a slight performance cost. - * - * @since 1.0.9 - */ - public static final SimpleOption BLOCK_OVERLAY_ACCURATE = SimpleOption.builder() - .comment("If the exact block bounding box should be used, this comes at a slight performance cost") - .node("block-outline", "block-overlay-accurate").type(TypeToken.get(Boolean.class)) - .notifyClient() - .build(); - /** * If the overlay colors should travel through the block. * @@ -230,11 +208,36 @@ public final class ModBlockOutline { .notifyClient() .build(); + /** + * If the exact block bounding box should be used, this comes at a slight performance cost. + * + * @since 1.0.9 + */ + @Deprecated + public static final SimpleOption BLOCK_OUTLINE_ACCURATE = SimpleOption.builder() + .comment("If the exact block bounding box should be used, this comes at a slight performance cost") + .node("block-outline", "block-outline-accurate").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + + /** + * If the exact block bounding box should be used, this comes at a slight performance cost. + * + * @since 1.0.9 + */ + @Deprecated + public static final SimpleOption BLOCK_OVERLAY_ACCURATE = SimpleOption.builder() + .comment("If the exact block bounding box should be used, this comes at a slight performance cost") + .node("block-outline", "block-overlay-accurate").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + /** * If blocks that connect together should share an outline. * * @since 1.0.9 */ + @Deprecated public static final SimpleOption BLOCK_OUTLINE_MULTI_BLOCK = SimpleOption.builder() .comment("If blocks that connect together should share an outline") .node("block-outline", "block-outline-multi-block").type(TypeToken.get(Boolean.class)) @@ -246,6 +249,7 @@ public final class ModBlockOutline { * * @since 1.0.9 */ + @Deprecated public static final SimpleOption SHOW_IN_SPECTATOR = SimpleOption.builder() .comment("If outlines should be visible in spectator mode") .node("block-outline", "show-in-spectator").type(TypeToken.get(Boolean.class)) 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..e1dfc0a9 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 %release_version% + */ + 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..1e4d5806 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 %release_version% + */ + 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 %release_version% */ - 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..d1b538a5 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 %release_version% + */ + 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 %release_version% */ - 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..97e40cf1 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 %release_version% + */ + 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 %release_version% */ - 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..c8139448 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 %release_version% + */ + 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 %release_version% */ - 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..8f139919 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 %release_version% + */ + 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 %release_version% */ - 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/ModGlintColorizer.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModGlintColorizer.java index afe5cf04..95d5b67a 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModGlintColorizer.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModGlintColorizer.java @@ -132,6 +132,7 @@ public final class ModGlintColorizer { * * @since 1.1.1 */ + @Deprecated public static final SimpleOption GLINT_COLOR = SimpleOption.builder() .node("glint-colorizer", "glint-color").type(TypeToken.get(Color.class)) .notifyClient() diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHitbox.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHitbox.java index 442b47cd..fc835c9d 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHitbox.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHitbox.java @@ -71,8 +71,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_PLAYER_LOOK_VECTOR = SimpleOption.builder() - .node("hitbox", "hitbox-player-look-vector").type(TypeToken.get(Boolean.class)) + public static final SimpleOption HITBOX_PLAYER_SHOW = SimpleOption.builder() + .node("hitbox", "hitbox-player-show").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -81,8 +81,9 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_PLAYER_SHOW = SimpleOption.builder() - .node("hitbox", "hitbox-player-show").type(TypeToken.get(Boolean.class)) + public static final NumberOption HITBOX_ITEM_LINE_WIDTH = NumberOption.number() + .node("hitbox", "hitbox-item-line-width").type(TypeToken.get(Float.class)) + .min(1.0F).max(5.0F) .notifyClient() .build(); @@ -91,9 +92,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final NumberOption HITBOX_ITEM_LINE_WIDTH = NumberOption.number() - .node("hitbox", "hitbox-item-line-width").type(TypeToken.get(Float.class)) - .min(1.0F).max(5.0F) + public static final SimpleOption HITBOX_ITEM_LINE_COLOR = SimpleOption.builder() + .node("hitbox", "hitbox-item-line-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -102,8 +102,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_ITEM_LINE_COLOR = SimpleOption.builder() - .node("hitbox", "hitbox-item-line-color").type(TypeToken.get(Color.class)) + public static final SimpleOption HITBOX_ITEM_SHOW = SimpleOption.builder() + .node("hitbox", "hitbox-item-show").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -112,8 +112,9 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_ITEM_LOOK_VECTOR = SimpleOption.builder() - .node("hitbox", "hitbox-item-look-vector").type(TypeToken.get(Boolean.class)) + public static final NumberOption HITBOX_PROJECTILE_LINE_WIDTH = NumberOption.number() + .node("hitbox", "hitbox-projectile-line-width").type(TypeToken.get(Float.class)) + .min(1.0F).max(5.0F) .notifyClient() .build(); @@ -122,8 +123,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_ITEM_SHOW = SimpleOption.builder() - .node("hitbox", "hitbox-item-show").type(TypeToken.get(Boolean.class)) + public static final SimpleOption HITBOX_PROJECTILE_LINE_COLOR = SimpleOption.builder() + .node("hitbox", "hitbox-projectile-line-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -132,9 +133,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final NumberOption HITBOX_PROJECTILE_LINE_WIDTH = NumberOption.number() - .node("hitbox", "hitbox-projectile-line-width").type(TypeToken.get(Float.class)) - .min(1.0F).max(5.0F) + public static final SimpleOption HITBOX_PROJECTILE_SHOW = SimpleOption.builder() + .node("hitbox", "hitbox-projectile-show").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -143,8 +143,9 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_PROJECTILE_LINE_COLOR = SimpleOption.builder() - .node("hitbox", "hitbox-projectile-line-color").type(TypeToken.get(Color.class)) + public static final NumberOption HITBOX_MOB_LINE_WIDTH = NumberOption.number() + .node("hitbox", "hitbox-mob-line-width").type(TypeToken.get(Float.class)) + .min(1.0F).max(5.0F) .notifyClient() .build(); @@ -153,8 +154,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_PROJECTILE_LOOK_VECTOR = SimpleOption.builder() - .node("hitbox", "hitbox-projectile-look-vector").type(TypeToken.get(Boolean.class)) + public static final SimpleOption HITBOX_MOB_LINE_COLOR = SimpleOption.builder() + .node("hitbox", "hitbox-mob-line-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -163,8 +164,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_PROJECTILE_SHOW = SimpleOption.builder() - .node("hitbox", "hitbox-projectile-show").type(TypeToken.get(Boolean.class)) + public static final SimpleOption HITBOX_MOB_SHOW = SimpleOption.builder() + .node("hitbox", "hitbox-mob-show").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -173,8 +174,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final NumberOption HITBOX_MOB_LINE_WIDTH = NumberOption.number() - .node("hitbox", "hitbox-mob-line-width").type(TypeToken.get(Float.class)) + public static final NumberOption HITBOX_EXP_ORB_LINE_WIDTH = NumberOption.number() + .node("hitbox", "hitbox-exp-orb-line-width").type(TypeToken.get(Float.class)) .min(1.0F).max(5.0F) .notifyClient() .build(); @@ -184,8 +185,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_MOB_LINE_COLOR = SimpleOption.builder() - .node("hitbox", "hitbox-mob-line-color").type(TypeToken.get(Color.class)) + public static final SimpleOption HITBOX_EXP_ORB_LINE_COLOR = SimpleOption.builder() + .node("hitbox", "hitbox-exp-orb-line-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -194,8 +195,8 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_MOB_LOOK_VECTOR = SimpleOption.builder() - .node("hitbox", "hitbox-mob-look-vector").type(TypeToken.get(Boolean.class)) + public static final SimpleOption HITBOX_EXP_ORB_SHOW = SimpleOption.builder() + .node("hitbox", "hitbox-exp-orb-show").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -204,8 +205,9 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_MOB_SHOW = SimpleOption.builder() - .node("hitbox", "hitbox-mob-show").type(TypeToken.get(Boolean.class)) + @Deprecated + public static final SimpleOption HITBOX_PLAYER_LOOK_VECTOR = SimpleOption.builder() + .node("hitbox", "hitbox-player-look-vector").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -214,9 +216,9 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final NumberOption HITBOX_EXP_ORB_LINE_WIDTH = NumberOption.number() - .node("hitbox", "hitbox-exp-orb-line-width").type(TypeToken.get(Float.class)) - .min(1.0F).max(5.0F) + @Deprecated + public static final SimpleOption HITBOX_ITEM_LOOK_VECTOR = SimpleOption.builder() + .node("hitbox", "hitbox-item-look-vector").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -225,8 +227,9 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_EXP_ORB_LINE_COLOR = SimpleOption.builder() - .node("hitbox", "hitbox-exp-orb-line-color").type(TypeToken.get(Color.class)) + @Deprecated + public static final SimpleOption HITBOX_PROJECTILE_LOOK_VECTOR = SimpleOption.builder() + .node("hitbox", "hitbox-projectile-look-vector").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -235,8 +238,9 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_EXP_ORB_LOOK_VECTOR = SimpleOption.builder() - .node("hitbox", "hitbox-exp-orb-look-vector").type(TypeToken.get(Boolean.class)) + @Deprecated + public static final SimpleOption HITBOX_MOB_LOOK_VECTOR = SimpleOption.builder() + .node("hitbox", "hitbox-mob-look-vector").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -245,8 +249,9 @@ public final class ModHitbox { * * @since 1.0.0 */ - public static final SimpleOption HITBOX_EXP_ORB_SHOW = SimpleOption.builder() - .node("hitbox", "hitbox-exp-orb-show").type(TypeToken.get(Boolean.class)) + @Deprecated + public static final SimpleOption HITBOX_EXP_ORB_LOOK_VECTOR = SimpleOption.builder() + .node("hitbox", "hitbox-exp-orb-look-vector").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHurtCam.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHurtCam.java index c9236c2d..5d86e305 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHurtCam.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHurtCam.java @@ -70,6 +70,7 @@ public final class ModHurtCam { * * @since 1.0.0 */ + @Deprecated public static final SimpleOption OLD_CAMERA_TILT = SimpleOption.builder() .node("hurt-cam", "old-camera-tilt").type(TypeToken.get(Boolean.class)) .notifyClient() diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHypixelBedwars.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHypixelBedwars.java index 4604526b..82e4af1e 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHypixelBedwars.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHypixelBedwars.java @@ -44,24 +44,25 @@ public final class ModHypixelBedwars { .build(); /** - * Recolor the beds in-game according to the team's color. + * Replaces normal hearts with hardcore hearts once your bed is lost. * * @since 1.0.0 */ - public static final SimpleOption COLORED_BEDS = SimpleOption.builder() - .comment("Recolor the beds in-game according to the team's color") - .node("hypixel-bedwars", "colored-beds").type(TypeToken.get(Boolean.class)) + public static final SimpleOption BW_HARDCORE_HEARTS = SimpleOption.builder() + .comment("Replaces normal hearts with hardcore hearts once your bed is lost") + .node("hypixel-bedwars", "bw-hardcore-hearts").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); /** - * Replaces normal hearts with hardcore hearts once your bed is lost. + * Recolor the beds in-game according to the team's color. * * @since 1.0.0 */ - public static final SimpleOption BW_HARDCORE_HEARTS = SimpleOption.builder() - .comment("Replaces normal hearts with hardcore hearts once your bed is lost") - .node("hypixel-bedwars", "bw-hardcore-hearts").type(TypeToken.get(Boolean.class)) + @Deprecated + public static final SimpleOption COLORED_BEDS = SimpleOption.builder() + .comment("Recolor the beds in-game according to the team's color") + .node("hypixel-bedwars", "colored-beds").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHypixelMod.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHypixelMod.java index b09e3186..30309c3d 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHypixelMod.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModHypixelMod.java @@ -134,16 +134,6 @@ public final class ModHypixelMod { .notifyClient() .build(); - /** - * No documentation available. - * - * @since 1.0.0 - */ - public static final SimpleOption HYPIXEL_AUTOCOMPLETE = SimpleOption.builder() - .node("hypixel-mod", "hypixel-autocomplete").type(TypeToken.get(Boolean.class)) - .notifyClient() - .build(); - /** * No documentation available. * @@ -284,6 +274,17 @@ public final class ModHypixelMod { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + @Deprecated + public static final SimpleOption HYPIXEL_AUTOCOMPLETE = SimpleOption.builder() + .node("hypixel-mod", "hypixel-autocomplete").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + private ModHypixelMod() { } diff --git a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModItemTracker.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModItemTracker.java index 854eab16..8e0befd4 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModItemTracker.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModItemTracker.java @@ -66,24 +66,25 @@ public final class ModItemTracker { .build(); /** - * No documentation available. + * How long the text should stay on screen (seconds). * * @since 1.0.0 */ - public static final SimpleOption SKYBLOCK_ONLY = SimpleOption.builder() - .node("item-tracker", "skyblock-only").type(TypeToken.get(Boolean.class)) + public static final NumberOption POPUP_DURATION_SEC = NumberOption.number() + .comment("How long the text should stay on screen (seconds)") + .node("item-tracker", "popup-duration-sec").type(TypeToken.get(Float.class)) + .min(0.1F).max(30.0F) .notifyClient() .build(); /** - * How long the text should stay on screen (seconds). + * No documentation available. * * @since 1.0.0 */ - public static final NumberOption POPUP_DURATION_SEC = NumberOption.number() - .comment("How long the text should stay on screen (seconds)") - .node("item-tracker", "popup-duration-sec").type(TypeToken.get(Float.class)) - .min(0.1F).max(30.0F) + @Deprecated + public static final SimpleOption SKYBLOCK_ONLY = SimpleOption.builder() + .node("item-tracker", "skyblock-only").type(TypeToken.get(Boolean.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..8618f276 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 %release_version% + */ + 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 %release_version% */ - 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..733ef456 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 %release_version% + */ + 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 %release_version% */ - 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..a903d7c9 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 %release_version% + */ + 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 %release_version% */ - 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/ModPackOrganizer.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPackOrganizer.java index 7493610e..4d125363 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPackOrganizer.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPackOrganizer.java @@ -48,6 +48,7 @@ public final class ModPackOrganizer { * * @since 1.0.0 */ + @Deprecated public static final SimpleOption SHOW_INCOMPATIBLE = SimpleOption.builder() .node("pack-organizer", "show-incompatible").type(TypeToken.get(Boolean.class)) .notifyClient() 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..df9e5ca4 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 %release_version% + */ + 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 %release_version% */ - 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/ModPotionEffects.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPotionEffects.java index f0de98e3..6bad8501 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPotionEffects.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModPotionEffects.java @@ -96,16 +96,6 @@ public final class ModPotionEffects { .notifyClient() .build(); - /** - * No documentation available. - * - * @since 1.0.0 - */ - public static final SimpleOption HIDE_MODERN_ICONS = SimpleOption.builder() - .node("potion-effects", "hide-modern-icons").type(TypeToken.get(Boolean.class)) - .notifyClient() - .build(); - /** * No documentation available. * @@ -387,6 +377,17 @@ public final class ModPotionEffects { .notifyClient() .build(); + /** + * No documentation available. + * + * @since 1.0.0 + */ + @Deprecated + public static final SimpleOption HIDE_MODERN_ICONS = SimpleOption.builder() + .node("potion-effects", "hide-modern-icons").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + private ModPotionEffects() { } 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..dc37a028 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 %release_version% + */ + 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 %release_version% */ - 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..72693d4d 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 %release_version% + */ + 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 %release_version% */ - 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/ModShinyPots.java b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModShinyPots.java index 257ecbfa..23df8eca 100644 --- a/api/src/main/java/com/lunarclient/apollo/mods/impl/ModShinyPots.java +++ b/api/src/main/java/com/lunarclient/apollo/mods/impl/ModShinyPots.java @@ -58,8 +58,8 @@ public final class ModShinyPots { * * @since 1.0.0 */ - public static final SimpleOption RENDER_GLINT_BEHIND_POTION = SimpleOption.builder() - .node("shiny-pots", "render-glint-behind-potion").type(TypeToken.get(Boolean.class)) + public static final SimpleOption RENDER_ENTIRE_SLOT = SimpleOption.builder() + .node("shiny-pots", "render-entire-slot").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -68,8 +68,9 @@ public final class ModShinyPots { * * @since 1.0.0 */ - public static final SimpleOption RENDER_ENTIRE_SLOT = SimpleOption.builder() - .node("shiny-pots", "render-entire-slot").type(TypeToken.get(Boolean.class)) + @Deprecated + public static final SimpleOption RENDER_GLINT_BEHIND_POTION = SimpleOption.builder() + .node("shiny-pots", "render-glint-behind-potion").type(TypeToken.get(Boolean.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..f025a032 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 @@ -160,13 +160,32 @@ public final class ModSkyblock { .build(); /** - * Changes crop hitboxes with their 1.12+ variant. Only enabled on Hypixel or singleplayer. + * No documentation available. * - * @since 1.0.9 + * @since %release_version% */ - public static final SimpleOption TALLER_CROPS = SimpleOption.builder() - .comment("Changes crop hitboxes with their 1.12+ variant. Only enabled on Hypixel or singleplayer.") - .node("skyblock", "taller-crops").type(TypeToken.get(Boolean.class)) + 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 %release_version% + */ + 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 %release_version% + */ + public static final SimpleOption SKY_BLOCK_FINISHED_COMMISSIONS = SimpleOption.builder() + .node("skyblock", "sky-block-finished-commissions").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -278,6 +297,18 @@ public final class ModSkyblock { .notifyClient() .build(); + /** + * Changes crop hitboxes with their 1.12+ variant. Only enabled on Hypixel or singleplayer. + * + * @since 1.0.9 + */ + @Deprecated + public static final SimpleOption TALLER_CROPS = SimpleOption.builder() + .comment("Changes crop hitboxes with their 1.12+ variant. Only enabled on Hypixel or singleplayer.") + .node("skyblock", "taller-crops").type(TypeToken.get(Boolean.class)) + .notifyClient() + .build(); + private ModSkyblock() { } 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..eb14294f 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 %release_version% + */ + 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 %release_version% */ - 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..7a5a7cfc 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 @@ -60,8 +60,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption HEADER_COLOR = SimpleOption.builder() - .node("tab", "header-color").type(TypeToken.get(Color.class)) + public static final SimpleOption BACKGROUND_COLOR = SimpleOption.builder() + .node("tab", "background-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -70,8 +70,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption FOOTER_COLOR = SimpleOption.builder() - .node("tab", "footer-color").type(TypeToken.get(Color.class)) + public static final SimpleOption PING_ROW = SimpleOption.builder() + .node("tab", "ping-row").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -80,8 +80,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption BACKGROUND_COLOR = SimpleOption.builder() - .node("tab", "background-color").type(TypeToken.get(Color.class)) + public static final SimpleOption ROWS_COLOR = SimpleOption.builder() + .node("tab", "rows-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -90,8 +90,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption PING_ROW = SimpleOption.builder() - .node("tab", "ping-row").type(TypeToken.get(Boolean.class)) + public static final SimpleOption HIGHLIGHT_OWN_NAME = SimpleOption.builder() + .node("tab", "highlight-own-name").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -100,8 +100,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption ROWS_COLOR = SimpleOption.builder() - .node("tab", "rows-color").type(TypeToken.get(Color.class)) + public static final SimpleOption NAME_COLOR = SimpleOption.builder() + .node("tab", "name-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -110,8 +110,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption DISABLE_HEADER = SimpleOption.builder() - .node("tab", "disable-header").type(TypeToken.get(Boolean.class)) + public static final SimpleOption NAME_SHADOW = SimpleOption.builder() + .node("tab", "name-shadow").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -120,8 +120,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption DISPLAY_PLAYER_HEAD = SimpleOption.builder() - .node("tab", "display-player-head").type(TypeToken.get(Boolean.class)) + public static final SimpleOption HIDE_PING = SimpleOption.builder() + .node("tab", "hide-ping").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -130,19 +130,18 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption DISABLE_FOOTER = SimpleOption.builder() - .node("tab", "disable-footer").type(TypeToken.get(Boolean.class)) + public static final SimpleOption HIDE_PING_IF_OVER_500 = SimpleOption.builder() + .node("tab", "hide-ping-if-over500").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); /** - * Hide Hypixel NPC on tab. + * No documentation available. * * @since 1.0.0 */ - public static final SimpleOption HIDE_NPC = SimpleOption.builder() - .comment("Hide Hypixel NPC on tab") - .node("tab", "hide-n-p-c").type(TypeToken.get(Boolean.class)) + public static final SimpleOption DISPLAY_PING_AS_NUMBER = SimpleOption.builder() + .node("tab", "display-ping-as-number").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -151,8 +150,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption SHOW_LUNAR_ICONS_ON_RIGHT = SimpleOption.builder() - .node("tab", "show-lunar-icons-on-right").type(TypeToken.get(Boolean.class)) + public static final SimpleOption PING_NUMBER_SHADOW = SimpleOption.builder() + .node("tab", "ping-number-shadow").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -161,8 +160,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption HIGHLIGHT_OWN_NAME = SimpleOption.builder() - .node("tab", "highlight-own-name").type(TypeToken.get(Boolean.class)) + public static final SimpleOption DYNAMIC_PING_COLOR = SimpleOption.builder() + .node("tab", "dynamic-ping-color").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -171,8 +170,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption NAME_COLOR = SimpleOption.builder() - .node("tab", "name-color").type(TypeToken.get(Color.class)) + public static final SimpleOption LOW_PING_NUMBER_COLOR = SimpleOption.builder() + .node("tab", "low-ping-number-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -181,8 +180,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption NAME_SHADOW = SimpleOption.builder() - .node("tab", "name-shadow").type(TypeToken.get(Boolean.class)) + public static final SimpleOption MEDIUM_PING_NUMBER_COLOR = SimpleOption.builder() + .node("tab", "medium-ping-number-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -191,8 +190,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption HIDE_PING = SimpleOption.builder() - .node("tab", "hide-ping").type(TypeToken.get(Boolean.class)) + public static final SimpleOption HIGH_PING_NUMBER_COLOR = SimpleOption.builder() + .node("tab", "high-ping-number-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -201,8 +200,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption HIDE_PING_IF_OVER_500 = SimpleOption.builder() - .node("tab", "hide-ping-if-over500").type(TypeToken.get(Boolean.class)) + public static final SimpleOption EXTREME_PING_NUMBER_COLOR = SimpleOption.builder() + .node("tab", "extreme-ping-number-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -211,8 +210,8 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption DISPLAY_PING_AS_NUMBER = SimpleOption.builder() - .node("tab", "display-ping-as-number").type(TypeToken.get(Boolean.class)) + public static final SimpleOption PING_NUMBER_COLOR = SimpleOption.builder() + .node("tab", "ping-number-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -221,8 +220,9 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption DYNAMIC_PING_COLOR = SimpleOption.builder() - .node("tab", "dynamic-ping-color").type(TypeToken.get(Boolean.class)) + @Deprecated + public static final SimpleOption HEADER_COLOR = SimpleOption.builder() + .node("tab", "header-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -231,8 +231,9 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption PING_NUMBER_SHADOW = SimpleOption.builder() - .node("tab", "ping-number-shadow").type(TypeToken.get(Boolean.class)) + @Deprecated + public static final SimpleOption FOOTER_COLOR = SimpleOption.builder() + .node("tab", "footer-color").type(TypeToken.get(Color.class)) .notifyClient() .build(); @@ -241,8 +242,9 @@ 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)) + @Deprecated + public static final SimpleOption DISABLE_HEADER = SimpleOption.builder() + .node("tab", "disable-header").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -251,8 +253,9 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption LOW_PING_NUMBER_COLOR = SimpleOption.builder() - .node("tab", "low-ping-number-color").type(TypeToken.get(Color.class)) + @Deprecated + public static final SimpleOption DISPLAY_PLAYER_HEAD = SimpleOption.builder() + .node("tab", "display-player-head").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -261,18 +264,21 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption MEDIUM_PING_NUMBER_COLOR = SimpleOption.builder() - .node("tab", "medium-ping-number-color").type(TypeToken.get(Color.class)) + @Deprecated + public static final SimpleOption DISABLE_FOOTER = SimpleOption.builder() + .node("tab", "disable-footer").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); /** - * No documentation available. + * Hide Hypixel NPC on tab. * * @since 1.0.0 */ - public static final SimpleOption HIGH_PING_NUMBER_COLOR = SimpleOption.builder() - .node("tab", "high-ping-number-color").type(TypeToken.get(Color.class)) + @Deprecated + public static final SimpleOption HIDE_NPC = SimpleOption.builder() + .comment("Hide Hypixel NPC on tab") + .node("tab", "hide-n-p-c").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); @@ -281,8 +287,9 @@ public final class ModTab { * * @since 1.0.0 */ - public static final SimpleOption EXTREME_PING_NUMBER_COLOR = SimpleOption.builder() - .node("tab", "extreme-ping-number-color").type(TypeToken.get(Color.class)) + @Deprecated + public static final SimpleOption SHOW_LUNAR_ICONS_ON_RIGHT = SimpleOption.builder() + .node("tab", "show-lunar-icons-on-right").type(TypeToken.get(Boolean.class)) .notifyClient() .build(); 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..3661c290 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 %release_version% + */ + 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/blockoutline.mdx b/docs/developers/mods/blockoutline.mdx index 1bf45b47..9877d79d 100644 --- a/docs/developers/mods/blockoutline.mdx +++ b/docs/developers/mods/blockoutline.mdx @@ -56,13 +56,6 @@ public void toggleBlockOutlineExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`BLOCK_OUTLINE_ACCURATE`__ - - If the exact block bounding box should be used, this comes at a slight performance cost - - Config Key: `block-outline-accurate` - - Values - - Type: `Boolean` - - Default: `true` - - __`BLOCK_OUTLINE_TRAVERSAL`__ - If the outline colors should travel through the block - Config Key: `block-outline-traversal` @@ -105,13 +98,6 @@ public void toggleBlockOutlineExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`BLOCK_OVERLAY_ACCURATE`__ - - If the exact block bounding box should be used, this comes at a slight performance cost - - Config Key: `block-overlay-accurate` - - Values - - Type: `Boolean` - - Default: `true` - - __`BLOCK_OVERLAY_TRAVERSAL`__ - If the overlay colors should travel through the block - Config Key: `block-overlay-traversal` @@ -141,17 +127,3 @@ public void toggleBlockOutlineExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` -- __`BLOCK_OUTLINE_MULTI_BLOCK`__ - - If blocks that connect together should share an outline - - Config Key: `block-outline-multi-block` - - Values - - Type: `Boolean` - - Default: `true` - -- __`SHOW_IN_SPECTATOR`__ - - If outlines should be visible in spectator mode - - Config Key: `show-in-spectator` - - Values - - Type: `Boolean` - - Default: `false` - 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/glintcolorizer.mdx b/docs/developers/mods/glintcolorizer.mdx index 83437e6b..4c41f14c 100644 --- a/docs/developers/mods/glintcolorizer.mdx +++ b/docs/developers/mods/glintcolorizer.mdx @@ -72,9 +72,3 @@ public void toggleGlintColorizerExample(Player viewer, boolean value) { - Type: `String` - Default: `#FF8040CC` -- __`GLINT_COLOR`__ - - Config Key: `glint-color` - - Values - - Type: `String` - - Default: `#FF8040CC` - diff --git a/docs/developers/mods/hitbox.mdx b/docs/developers/mods/hitbox.mdx index 02cd2a71..814f1994 100644 --- a/docs/developers/mods/hitbox.mdx +++ b/docs/developers/mods/hitbox.mdx @@ -35,12 +35,6 @@ public void toggleHitboxExample(Player viewer, boolean value) { - Type: `String` - Default: `#FFFFFFFF` -- __`HITBOX_PLAYER_LOOK_VECTOR`__ - - Config Key: `hitbox-player-look-vector` - - Values - - Type: `Boolean` - - Default: `false` - - __`HITBOX_PLAYER_SHOW`__ - Config Key: `hitbox-player-show` - Values @@ -61,12 +55,6 @@ public void toggleHitboxExample(Player viewer, boolean value) { - Type: `String` - Default: `#FFFFFFFF` -- __`HITBOX_ITEM_LOOK_VECTOR`__ - - Config Key: `hitbox-item-look-vector` - - Values - - Type: `Boolean` - - Default: `false` - - __`HITBOX_ITEM_SHOW`__ - Config Key: `hitbox-item-show` - Values @@ -87,12 +75,6 @@ public void toggleHitboxExample(Player viewer, boolean value) { - Type: `String` - Default: `#FFFFFFFF` -- __`HITBOX_PROJECTILE_LOOK_VECTOR`__ - - Config Key: `hitbox-projectile-look-vector` - - Values - - Type: `Boolean` - - Default: `false` - - __`HITBOX_PROJECTILE_SHOW`__ - Config Key: `hitbox-projectile-show` - Values @@ -113,12 +95,6 @@ public void toggleHitboxExample(Player viewer, boolean value) { - Type: `String` - Default: `#FFFFFFFF` -- __`HITBOX_MOB_LOOK_VECTOR`__ - - Config Key: `hitbox-mob-look-vector` - - Values - - Type: `Boolean` - - Default: `false` - - __`HITBOX_MOB_SHOW`__ - Config Key: `hitbox-mob-show` - Values @@ -139,12 +115,6 @@ public void toggleHitboxExample(Player viewer, boolean value) { - Type: `String` - Default: `#FFFFFFFF` -- __`HITBOX_EXP_ORB_LOOK_VECTOR`__ - - Config Key: `hitbox-exp-orb-look-vector` - - Values - - Type: `Boolean` - - Default: `false` - - __`HITBOX_EXP_ORB_SHOW`__ - Config Key: `hitbox-exp-orb-show` - Values diff --git a/docs/developers/mods/hurtcam.mdx b/docs/developers/mods/hurtcam.mdx index 41413233..73dea494 100644 --- a/docs/developers/mods/hurtcam.mdx +++ b/docs/developers/mods/hurtcam.mdx @@ -35,9 +35,3 @@ public void toggleHurtCamExample(Player viewer, boolean value) { - Minimum: `0.0F` - Maximum: `2.0F` -- __`OLD_CAMERA_TILT`__ - - Config Key: `old-camera-tilt` - - Values - - Type: `Boolean` - - Default: `false` - diff --git a/docs/developers/mods/hypixelbedwars.mdx b/docs/developers/mods/hypixelbedwars.mdx index 70c21290..51dbdeba 100644 --- a/docs/developers/mods/hypixelbedwars.mdx +++ b/docs/developers/mods/hypixelbedwars.mdx @@ -21,13 +21,6 @@ public void toggleHypixelBedwarsExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`COLORED_BEDS`__ - - Recolor the beds in-game according to the team's color - - Config Key: `colored-beds` - - Values - - Type: `Boolean` - - Default: `true` - - __`BW_HARDCORE_HEARTS`__ - Replaces normal hearts with hardcore hearts once your bed is lost - Config Key: `bw-hardcore-hearts` diff --git a/docs/developers/mods/hypixelmod.mdx b/docs/developers/mods/hypixelmod.mdx index bdd246ac..df1ecf92 100644 --- a/docs/developers/mods/hypixelmod.mdx +++ b/docs/developers/mods/hypixelmod.mdx @@ -75,12 +75,6 @@ public void toggleHypixelModsExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`HYPIXEL_AUTOCOMPLETE`__ - - Config Key: `hypixel-autocomplete` - - Values - - Type: `Boolean` - - Default: `true` - - __`LEVEL_COLOR`__ - Config Key: `level-color` - Values diff --git a/docs/developers/mods/itemtracker.mdx b/docs/developers/mods/itemtracker.mdx index 3c896b45..539230f2 100644 --- a/docs/developers/mods/itemtracker.mdx +++ b/docs/developers/mods/itemtracker.mdx @@ -35,12 +35,6 @@ public void toggleItemTrackerExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`SKYBLOCK_ONLY`__ - - Config Key: `skyblock-only` - - Values - - Type: `Boolean` - - Default: `false` - - __`POPUP_DURATION_SEC`__ - How long the text should stay on screen (seconds) - Config Key: `popup-duration-sec` 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/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/packorganizer.mdx b/docs/developers/mods/packorganizer.mdx index d8f62ba0..d39dc697 100644 --- a/docs/developers/mods/packorganizer.mdx +++ b/docs/developers/mods/packorganizer.mdx @@ -21,9 +21,3 @@ public void togglePackOrganizerExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` -- __`SHOW_INCOMPATIBLE`__ - - Config Key: `show-incompatible` - - Values - - Type: `Boolean` - - Default: `true` - 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/potioneffects.mdx b/docs/developers/mods/potioneffects.mdx index 29b6009d..6112619c 100644 --- a/docs/developers/mods/potioneffects.mdx +++ b/docs/developers/mods/potioneffects.mdx @@ -53,12 +53,6 @@ public void togglePotionEffectsExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `true` -- __`HIDE_MODERN_ICONS`__ - - Config Key: `hide-modern-icons` - - Values - - Type: `Boolean` - - Default: `true` - - __`POTION_BLINK`__ - Config Key: `potion-blink` - Values 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/shinypots.mdx b/docs/developers/mods/shinypots.mdx index de2e9c14..32f2da79 100644 --- a/docs/developers/mods/shinypots.mdx +++ b/docs/developers/mods/shinypots.mdx @@ -27,12 +27,6 @@ public void toggleShinyPotsExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`RENDER_GLINT_BEHIND_POTION`__ - - Config Key: `render-glint-behind-potion` - - Values - - Type: `Boolean` - - Default: `false` - - __`RENDER_ENTIRE_SLOT`__ - Config Key: `render-entire-slot` - Values diff --git a/docs/developers/mods/skyblock.mdx b/docs/developers/mods/skyblock.mdx index 98eb36fc..faf8ac91 100644 --- a/docs/developers/mods/skyblock.mdx +++ b/docs/developers/mods/skyblock.mdx @@ -93,9 +93,20 @@ public void toggleHypixelSkyblockExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`TALLER_CROPS`__ - - Changes crop hitboxes with their 1.12+ variant. Only enabled on Hypixel or singleplayer. - - Config Key: `taller-crops` +- __`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` 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..1bb780bd 100644 --- a/docs/developers/mods/tab.mdx +++ b/docs/developers/mods/tab.mdx @@ -28,18 +28,6 @@ public void toggleTabEditorExample(Player viewer, boolean value) { - Type: `Boolean` - Default: `false` -- __`HEADER_COLOR`__ - - Config Key: `header-color` - - Values - - Type: `String` - - Default: `#80000000` - -- __`FOOTER_COLOR`__ - - Config Key: `footer-color` - - Values - - Type: `String` - - Default: `#80000000` - - __`BACKGROUND_COLOR`__ - Config Key: `background-color` - Values @@ -58,37 +46,6 @@ public void toggleTabEditorExample(Player viewer, boolean value) { - Type: `String` - Default: `#20000000` -- __`DISABLE_HEADER`__ - - Config Key: `disable-header` - - Values - - Type: `Boolean` - - Default: `false` - -- __`DISPLAY_PLAYER_HEAD`__ - - Config Key: `display-player-head` - - Values - - Type: `Boolean` - - Default: `true` - -- __`DISABLE_FOOTER`__ - - Config Key: `disable-footer` - - Values - - Type: `Boolean` - - Default: `false` - -- __`HIDE_NPC`__ - - Hide Hypixel NPC on tab - - Config Key: `hide-n-p-c` - - Values - - Type: `Boolean` - - Default: `false` - -- __`SHOW_LUNAR_ICONS_ON_RIGHT`__ - - Config Key: `show-lunar-icons-on-right` - - Values - - Type: `Boolean` - - Default: `false` - - __`HIGHLIGHT_OWN_NAME`__ - Config Key: `highlight-own-name` - Values @@ -125,23 +82,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 +118,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` +