diff options
Diffstat (limited to 'src/main/kotlin/com/ambientaddons/config/Config.kt')
-rw-r--r-- | src/main/kotlin/com/ambientaddons/config/Config.kt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/kotlin/com/ambientaddons/config/Config.kt b/src/main/kotlin/com/ambientaddons/config/Config.kt index 9035f6e..e81d89a 100644 --- a/src/main/kotlin/com/ambientaddons/config/Config.kt +++ b/src/main/kotlin/com/ambientaddons/config/Config.kt @@ -13,6 +13,10 @@ object Config : Vigilant( var autoTrapper = false var trapperEsp = false + var crimsonNotify = false + var crimsonColor = Color.CYAN + var crimsonHighlight = 0 + var batHighlight = 0 var batColor = Color.CYAN var saHighlight = 0 @@ -60,6 +64,24 @@ object Config : Vigilant( description = "Highlights trapper quests with a beacon beam and box. Legal, as Hypixel uses the glowing status effect for clients that support it." ) } + subcategory("Fishing features") { + switch( + ::crimsonNotify, + name = "Crimson sea creature alert", + description = "Sends a message in chat when a rare sea creature is fished (within render distance).", + ) + selector( + ::crimsonHighlight, + name = "Crimson highlight", + description = "Highlight rare Crimson sea creatures and Thunder sparks.", + options = listOf("Off", "Highlight", "ESP") + ) + color( + ::crimsonColor, + name = "Crimson highlight color", + description = "Color of rare Crimson fishing highlight.", + ) + } } category("Highlights") { |