diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-05-09 06:53:45 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 22:53:45 +0200 |
commit | 55c2614cb69551363607cbdb7f42c38eccd3d38e (patch) | |
tree | 3e77f3ddca2a3a271d5a1f9d06f324111ab3d7ec /src/main/java/at/hannibal2/skyhanni/config | |
parent | 7a493ca560b74f1fe995fbe351c79eabaa90d432 (diff) | |
download | skyhanni-55c2614cb69551363607cbdb7f42c38eccd3d38e.tar.gz skyhanni-55c2614cb69551363607cbdb7f42c38eccd3d38e.tar.bz2 skyhanni-55c2614cb69551363607cbdb7f42c38eccd3d38e.zip |
Trevor features and solver (#92)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java index f3dd78b37..fdcd643d9 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -231,6 +231,9 @@ public class Misc { @ConfigAccordionId(id = 11) public boolean estimatedIemValueAlwaysEnabled = true; + @Expose + public Position itemPriceDataPos = new Position(140, 90, false, true); + @ConfigOption(name = "Discord Rich Presence", desc = "") @Accordion @Expose @@ -305,8 +308,38 @@ public class Misc { public Property<Integer> auto = Property.of(0); } + @ConfigOption(name = "Trevor The Trapper", desc = "") + @Accordion @Expose - public Position itemPriceDataPos = new Position(140, 90, false, true); + public TrevorTheTrapper trevorTheTrapper = new TrevorTheTrapper(); + + public static class TrevorTheTrapper { + + @Expose + @ConfigOption(name = "Trapper Solver", desc = "Assists you in finding Trevor's mobs. §cMay not always work as expected.") + @ConfigEditorBoolean + public boolean trapperSolver = true; + + @Expose + @ConfigOption(name = "Mob Dead Warning", desc = "Show a message when Trevor's mob dies.") + @ConfigEditorBoolean + public boolean trapperMobDiedMessage = true; + + @Expose + @ConfigOption(name = "Warp to Trapper", desc = "Warp to Trevor's Den.") + @ConfigEditorBoolean + public boolean warpToTrapper = false; + + @Expose + @ConfigOption(name = "Warp Hotkey", desc = "Press this key to warp to Trevor's Den.") + @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) + public int keyBindWarpTrapper = Keyboard.KEY_NONE; + + @Expose + @ConfigOption(name = "Trapper Cooldown", desc = "Change the color of Trevor and adds a cooldown over his head.") + @ConfigEditorBoolean + public boolean trapperTalkCooldown = true; + } @Expose @ConfigOption(name = "Exp Bottles", desc = "Hides all the experience orbs lying on the ground.") |