From 7a096c605ee5e7245f6263a6aef8b2757db8e61d Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Wed, 25 Jan 2023 14:32:25 +0100 Subject: Added tia relay helper and waypoint. --- .../hannibal2/skyhanni/config/features/Misc.java | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') 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 @@ -143,6 +143,35 @@ public class Misc { @ConfigAccordionId(id = 6) 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 -- cgit