diff options
Diffstat (limited to 'src/main/kotlin/com/ambientaddons/config/Config.kt')
-rw-r--r-- | src/main/kotlin/com/ambientaddons/config/Config.kt | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/src/main/kotlin/com/ambientaddons/config/Config.kt b/src/main/kotlin/com/ambientaddons/config/Config.kt index 00017c3..9035f6e 100644 --- a/src/main/kotlin/com/ambientaddons/config/Config.kt +++ b/src/main/kotlin/com/ambientaddons/config/Config.kt @@ -10,6 +10,8 @@ object Config : Vigilant( ) { var kuudraReady = false + var autoTrapper = false + var trapperEsp = false var batHighlight = 0 var batColor = Color.CYAN @@ -20,8 +22,6 @@ object Config : Vigilant( var bestiaryHighlight = 0 var bestiaryColor = Color.MAGENTA - - var blockLowReroll = false var autoBuyChest = 0 var autoReady = 0 @@ -41,11 +41,25 @@ object Config : Vigilant( init { category("Misc") { - switch( - ::kuudraReady, - name = "Automatically ready in Kuudra", - description = "Automatically clicks the ready pane when the ready GUI is opened." - ) + subcategory("Kuudra") { + switch( + ::kuudraReady, + name = "Automatically ready in Kuudra", + description = "Automatically clicks the ready pane when the ready GUI is opened." + ) + } + subcategory("Trevor the Trapper") { + switch( + ::autoTrapper, + name = "Automatically start trapper quests", + description = "Automatically performs the useless chat message click. This is analogous to SBE's crystal hollows renew feature." + ) + switch( + ::trapperEsp, + name = "Highlight trapper animals", + description = "Highlights trapper quests with a beacon beam and box. Legal, as Hypixel uses the glowing status effect for clients that support it." + ) + } } category("Highlights") { |