aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2023-06-28 08:08:04 +1000
committerGitHub <noreply@github.com>2023-06-28 00:08:04 +0200
commitcf5a60283caf111ca81b8add1cccd21e04ec79a5 (patch)
tree2a369e0cb1feff9e8908d0be71c03b627ea836de /src/main/java/at/hannibal2/skyhanni/config
parent65a4842de7a306d45bdda99788a7925443932b39 (diff)
downloadskyhanni-cf5a60283caf111ca81b8add1cccd21e04ec79a5.tar.gz
skyhanni-cf5a60283caf111ca81b8add1cccd21e04ec79a5.tar.bz2
skyhanni-cf5a60283caf111ca81b8add1cccd21e04ec79a5.zip
Merge pull request #260
* added kloon hacking solvers * Merge branch 'beta' into kloon_hacking * Code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java32
1 files changed, 29 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
index b4b8fc53c..e8e199388 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java
@@ -33,6 +33,7 @@ public class RiftConfig {
@Expose
public Position timerPosition = new Position(10, 10, false, true);
+
}
@ConfigOption(name = "Crux Warnings", desc = "")
@@ -48,7 +49,6 @@ public class RiftConfig {
@ConfigEditorBoolean
public boolean shyWarning = true;
-
@Expose
@ConfigOption(name = "Volt Warning", desc = "Shows a warning while a volt is discharging lightning.")
@ConfigEditorBoolean
@@ -98,7 +98,8 @@ public class RiftConfig {
public static class OdonataConfig {
@Expose
- @ConfigOption(name = "Highlight", desc = "Highlight the small §cOdonatas §7flying around the trees while holding a §eEmpty Odonata Bottle §7in the hand.")
+ @ConfigOption(name = "Highlight", desc = "Highlight the small §cOdonatas §7flying around the trees while holding a " +
+ "§eEmpty Odonata Bottle §7in the hand.")
@ConfigEditorBoolean
public boolean highlight = true;
@@ -134,7 +135,32 @@ public class RiftConfig {
public boolean highlightGuide = true;
@Expose
- @ConfigOption(name = "Agaricus Cap", desc = "Counts down the time until §eAgaricus Cap (Mushroom) §7changes color from brown to red and is breakable.")
+ @ConfigOption(name = "Agaricus Cap", desc = "Counts down the time until §eAgaricus Cap (Mushroom) " +
+ "§7changes color from brown to red and is breakable.")
@ConfigEditorBoolean
public boolean agaricusCap = true;
+
+ @ConfigOption(name = "Kloon Hacking", desc = "")
+ @Accordion
+ @Expose
+ public KloonHacking hacking = new KloonHacking();
+
+ public static class KloonHacking {
+
+ @Expose
+ @ConfigOption(name = "Hacking Solver", desc = "Highlights the correct button to click in the hacking inventory.")
+ @ConfigEditorBoolean
+ public boolean solver = true;
+
+ @Expose
+ @ConfigOption(name = "Color Guide", desc = "Tells you which colour to pick.")
+ @ConfigEditorBoolean
+ public boolean colour = true;
+
+ @Expose
+ @ConfigOption(name = "Terminal Waypoints", desc = "While wearing the helmet, waypoints will appear at each terminal location.")
+ @ConfigEditorBoolean
+ public boolean waypoints = true;
+
+ }
}