diff options
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SlayerOverlay.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SlayerOverlay.java | 117 |
1 files changed, 59 insertions, 58 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SlayerOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SlayerOverlay.java index 2e1e8b62..220b992b 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SlayerOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SlayerOverlay.java @@ -9,67 +9,68 @@ import java.util.Arrays; import java.util.List; public class SlayerOverlay { - @Expose - @ConfigOption( - name = "\u00A7cWarning", - desc = "You may have to do 2 bosses before everything shows" - ) - @ConfigEditorFSR( - runnableId = 12 - ) - public boolean slayerWarning = false; + @Expose + @ConfigOption( + name = "\u00A7cWarning", + desc = "You may have to do 2 bosses before everything shows" + ) + @ConfigEditorFSR( + runnableId = 12 + ) + public boolean slayerWarning = false; - @Expose - @ConfigOption( - name = "Enable Slayer Overlay", - desc = "Toggles the slayer overlay" - ) - @ConfigEditorBoolean - public boolean slayerOverlay = false; + @Expose + @ConfigOption( + name = "Enable Slayer Overlay", + desc = "Toggles the slayer overlay" + ) + @ConfigEditorBoolean + public boolean slayerOverlay = false; - @Expose - @ConfigOption( - name = "Only show when relevant", - desc = "Only shows the overlay when you are in an area where your current Slayer can be completed" - ) - @ConfigEditorBoolean - public boolean onlyShowWhenRelevant = true; + @Expose + @ConfigOption( + name = "Only show when relevant", + desc = "Only shows the overlay when you are in an area where your current Slayer can be completed" + ) + @ConfigEditorBoolean + public boolean onlyShowWhenRelevant = true; - @Expose - @ConfigOption( - name = "Slayer Text", - desc = "\u00a7eDrag text to change the appearance of the overlay" - ) - @ConfigEditorDraggableList( - exampleText = {"\u00a7eSlayer: \u00a74Sven", - "\u00a7eRNG Meter: \u00a75100%", - "\u00a7eLvl: \u00a7d7", - "\u00a7eKill time: \u00a7c1:30", - "\u00a7eXP: \u00a7d75,450/100,000", - "\u00a7eBosses till next Lvl: \u00a7d17", - "\u00a7eAverage kill time: \u00a7c3:20" - } - ) - public List<Integer> slayerText = new ArrayList<>(Arrays.asList(0, 1, 4, 5, 3, 6)); + @Expose + @ConfigOption( + name = "Slayer Text", + desc = "\u00a7eDrag text to change the appearance of the overlay" + ) + @ConfigEditorDraggableList( + exampleText = { + "\u00a7eSlayer: \u00a74Sven", + "\u00a7eRNG Meter: \u00a75100%", + "\u00a7eLvl: \u00a7d7", + "\u00a7eKill time: \u00a7c1:30", + "\u00a7eXP: \u00a7d75,450/100,000", + "\u00a7eBosses till next Lvl: \u00a7d17", + "\u00a7eAverage kill time: \u00a7c3:20" + } + ) + public List<Integer> slayerText = new ArrayList<>(Arrays.asList(0, 1, 4, 5, 3, 6)); - @Expose - @ConfigOption( - name = "Edit Slayer Overlay Position", - desc = "Change the position of the Slayer overlay" - ) - @ConfigEditorButton( - runnableId = 18, - buttonText = "Edit" - ) - public Position slayerPosition = new Position(10, 200); + @Expose + @ConfigOption( + name = "Edit Slayer Overlay Position", + desc = "Change the position of the Slayer overlay" + ) + @ConfigEditorButton( + runnableId = 18, + buttonText = "Edit" + ) + public Position slayerPosition = new Position(10, 200); - @Expose - @ConfigOption( - name = "Slayer Style", - desc = "Change the style of the Slayer overlay" - ) - @ConfigEditorDropdown( - values = {"Background", "No Shadow", "Shadow", "Full Shadow"} - ) - public int slayerStyle = 0; + @Expose + @ConfigOption( + name = "Slayer Style", + desc = "Change the style of the Slayer overlay" + ) + @ConfigEditorDropdown( + values = {"Background", "No Shadow", "Shadow", "Full Shadow"} + ) + public int slayerStyle = 0; } |
