diff options
author | Appability <appable@icloud.com> | 2022-10-17 16:11:40 -0700 |
---|---|---|
committer | Appability <appable@icloud.com> | 2022-10-17 16:11:40 -0700 |
commit | fcd49c8b59f9c76008b5112a2e296c164b168842 (patch) | |
tree | ba3be0850cfe2185a68e6ba9fd862e5c59fd57dc /src/main/kotlin/com/ambientaddons/config | |
parent | d4245bb705c7d8965e6bf63c90614dcfef38dcf7 (diff) | |
download | AmbientAddons-fcd49c8b59f9c76008b5112a2e296c164b168842.tar.gz AmbientAddons-fcd49c8b59f9c76008b5112a2e296c164b168842.tar.bz2 AmbientAddons-fcd49c8b59f9c76008b5112a2e296c164b168842.zip |
trapper esp
Diffstat (limited to 'src/main/kotlin/com/ambientaddons/config')
-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") { |