This commit is contained in:
2025-11-17 19:16:57 +02:00
parent e3e7de9108
commit e555d5a114
22 changed files with 864 additions and 141 deletions

View File

@@ -55,33 +55,44 @@ public interface EasyGOTRConfig extends Config {
return "";
}
@ConfigItem(
keyName = "collectUnchargedCells",
name = "Collect Uncharged Cells",
description = "When disabled, the plugin will no longer recommend picking up uncharged cells.",
position = 6,
section = easyGOTRConfig
)
default boolean collectUnchargedCells() {
return true;
}
@ConfigItem(
keyName = "keepImbueRunes",
name = "Keep Imbue Runes",
description = "Ignore water and fire runes when deciding to deposit runes (useful for Magic Imbue).",
position = 7,
section = easyGOTRConfig
)
default boolean keepImbueRunes() {
return false;
}
@ConfigItem(
keyName = "usePouches",
name = "Use Essence Pouches?",
description = "Requires NPC Contact runes in Rune Pouch or Redwood lit Lantern",
position = 6,
position = 8,
section = easyGOTRConfig
)
default boolean usePouches() {
return false;
}
@ConfigItem(
keyName = "hasBook",
name = "Abyssal Book in bank? (IMPORTANT FOR NPC CONTACT)",
description = "IMPORTANT TO USE NPC CONTACT",
position = 7,
section = easyGOTRConfig
)
default boolean hasBook() {
return true;
}
@ConfigItem(
keyName = "startFrags",
name = "Starting Fragments (0 to wait for first portal)",
description = "How many fragments you should get before leaving the starting zone",
position = 8,
position = 10,
section = easyGOTRConfig
)
default int startingFrags() {