1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package at.hannibal2.skyhanni.config.features;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.Overlay;
import io.github.moulberry.moulconfig.annotations.*;
public class Bingo {
@Expose
@ConfigOption(name = "Compact Chat Messages", desc = "Shortens chat messages about skill level ups, collection gains, " +
"new area discoveries, and bestiary upgrades while on bingo.")
@ConfigEditorBoolean
public boolean compactChatMessages = true;
@Expose
@ConfigOption(name = "Bingo Card View", desc = "Simply showing the bingo card. Toggle by sneaking with skyblock menu in hand.")
@ConfigEditorBoolean
public boolean cardDisplay = true;
@Expose
@ConfigOption(name = "Bingo Steps", desc = "Show help with the next step in bingo instead of the bingo card. " +
"§cThis feature is in early development. Expect bugs and missing goals.")
@ConfigEditorBoolean
public boolean stepHelper = false;
@Expose
// @ConfigOption(name = "Bingo Card Position", desc = "")
// @ConfigEditorButton(runnableId = "bingoCard", buttonText = "Edit")
public Position bingoCardPos = new Position(10, 10, false, true);
@ConfigOption(name = "Minion Craft Helper", desc = "")
@ConfigEditorAccordion(id = 0)
public boolean minionCraftHelper = false;
@Expose
@ConfigOption(name = "Minion Craft Helper", desc = "Show how many more items you need to upgrade the minion in your inventory. Especially useful for bingo.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean minionCraftHelperEnabled = true;
@Expose
// @ConfigOption(name = "Minion Craft Helper Position", desc = "")
// @ConfigEditorButton(runnableId = "minionCraftHelper", buttonText = "Edit")
// @ConfigAccordionId(id = 0)
public Position minionCraftHelperPos = new Position(10, 10, false, true);
}
|