diff options
author | ingle <inglettronald@gmail.com> | 2022-10-27 17:49:49 -0500 |
---|---|---|
committer | ingle <inglettronald@gmail.com> | 2022-10-27 17:49:49 -0500 |
commit | fba8ecf8f06c03c36c8d4823fe5e5928bad98d32 (patch) | |
tree | 9983636402355e7e32f294c5e25b01471173e96c /src/main/kotlin/dulkirmod/config | |
parent | d2eb0ada9182f9cd507cd32b74cb72f62355acaa (diff) | |
download | DulkirMod-fba8ecf8f06c03c36c8d4823fe5e5928bad98d32.tar.gz DulkirMod-fba8ecf8f06c03c36c8d4823fe5e5928bad98d32.tar.bz2 DulkirMod-fba8ecf8f06c03c36c8d4823fe5e5928bad98d32.zip |
+ Added hide dungeon loot option
= updated throttle notifier to have some more options
Diffstat (limited to 'src/main/kotlin/dulkirmod/config')
-rw-r--r-- | src/main/kotlin/dulkirmod/config/Config.kt | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/src/main/kotlin/dulkirmod/config/Config.kt b/src/main/kotlin/dulkirmod/config/Config.kt index ebda0c5..df69eca 100644 --- a/src/main/kotlin/dulkirmod/config/Config.kt +++ b/src/main/kotlin/dulkirmod/config/Config.kt @@ -55,6 +55,14 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so @Property( type = PropertyType.SWITCH, + name = "Throttle Notifier Spam", + description = "LET EM KNOW!", + category = "Dungeons" + ) + var throttleNotifierSpam = true + + @Property( + type = PropertyType.SWITCH, name = "Hide Extra Nametags", description = "Prevents some nametags not covered by skytils \"Hide non-starred nametags\" from rendering.", category = "General" @@ -229,12 +237,30 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so type = PropertyType.SWITCH, name = "JoinDungeon Command Confirmation", description = "Chat notification when you push the button. Useful if you suck at navigating a numpad.", - category = "Dungeon" + category = "Dungeons" ) var dungeonCommandConfirm = true @Property( type = PropertyType.SWITCH, + name = "Hide Chests that are already opened at Croesus", + description = "Just doesn't render the item if it has the chest opened string", + category = "Dungeons" + ) + var hideOpenedChests = false + + @Property( + type = PropertyType.TEXT, + name = "Highlighted player name", + description = "Not case-sensitive", + category = "Dungeons", + placeholder = "Dilkur", + protectedText = false + ) + var highlightLeapName: String = "Dilkur" + + @Property( + type = PropertyType.SWITCH, name = "Remove Selfie Camera", description = "Get rid of pesky reverse third person!", category = "General" @@ -431,6 +457,7 @@ object Config : Vigilant(File("./config/dulkirmod/config.toml"), "DulkirMod", so fun init() { initialize() addDependency("customMessage", "throttleNotifier") + addDependency("throttleNotifierSpam", "throttleNotifier") addDependency("bestiaryNotifVol", "bestiaryAlertSounds") addDependency("demoVolume", "bestiaryAlertSounds") |