aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-01-25 14:32:25 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-01-25 14:32:25 +0100
commit7a096c605ee5e7245f6263a6aef8b2757db8e61d (patch)
treec39cd1189856f0300a7c28683973d34cd7dfec20 /src/main/java/at/hannibal2/skyhanni/config/features
parentd25cfef7963debcf4adbcec7d086443132b6a213 (diff)
downloadskyhanni-7a096c605ee5e7245f6263a6aef8b2757db8e61d.tar.gz
skyhanni-7a096c605ee5e7245f6263a6aef8b2757db8e61d.tar.bz2
skyhanni-7a096c605ee5e7245f6263a6aef8b2757db8e61d.zip
Added tia relay helper and waypoint.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Misc.java29
1 files changed, 29 insertions, 0 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 40ecb5f8a..ff3e248be 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
@@ -144,6 +144,35 @@ public class Misc {
public boolean crimsonIsleReputationLocation = false;
@Expose
+ @ConfigOption(name = "Tia Relay", desc = "")
+ @ConfigEditorAccordion(id = 7)
+ public boolean tiaRelay = false;
+
+ @Expose
+ @ConfigOption(name = "Tia Relay Waypoint", desc = "Show the next Relay waypoint for Tia The Fairy, where maintenance for the abiphone network needs to be done.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 7)
+ public boolean tiaRelayNextWaypoint = true;
+
+ @Expose
+ @ConfigOption(name = "Tia Relay All", desc = "Show all relay waypoints at once.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 7)
+ public boolean tiaRelayAllWaypoints = false;
+
+ @Expose
+ @ConfigOption(name = "Tia Relay Helper", desc = "Helps with solving the sound puzzle.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 7)
+ public boolean tiaRelayHelper = true;
+
+ @Expose
+ @ConfigOption(name = "Tia Relay Mute", desc = "Mutes the sound when close to the Relay.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 7)
+ public boolean tiaRelayMute = true;
+
+ @Expose
@ConfigOption(name = "Exp Bottles", desc = "Hides all the experience bottles lying on the ground.")
@ConfigEditorBoolean
public boolean hideExpBottles = false;