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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
package at.hannibal2.skyhanni.config.features;
import at.hannibal2.skyhanni.config.core.config.Position;
import at.hannibal2.skyhanni.config.core.config.annotations.*;
import com.google.gson.annotations.Expose;
public class Minions {
@Expose
@ConfigOption(name = "Name Display", desc = "Show the minion name and tier over the minion.")
@ConfigEditorBoolean
public boolean nameDisplay = true;
@ConfigOption(name = "Last Clicked", desc = "")
@ConfigEditorAccordion(id = 0)
public boolean lastClickedMinion = false;
@Expose
@ConfigOption(name = "Last Minion Display", desc = "Marks the location of the last clicked minion (even through walls)")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean lastClickedMinionDisplay = false;
@Expose
@ConfigOption(
name = "Last Minion Color",
desc = "The colour in which the last minion should be displayed"
)
@ConfigEditorColour
@ConfigAccordionId(id = 0)
public String lastOpenedMinionColor = "0:245:85:255:85";
@Expose
@ConfigOption(
name = "Last Minion Time",
desc = "Time in seconds how long the last minion should be displayed"
)
@ConfigEditorSlider(
minValue = 3,
maxValue = 120,
minStep = 1
)
@ConfigAccordionId(id = 0)
public int lastOpenedMinionTime = 20;
@ConfigOption(name = "Emptied Time", desc = "")
@ConfigEditorAccordion(id = 1)
public boolean emptiedTime = false;
@Expose
@ConfigOption(name = "Emptied Time Display", desc = "Show the time when the hopper in the minion was last emptied.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
public boolean emptiedTimeDisplay = false;
@Expose
@ConfigOption(
name = "Distance",
desc = "At what distance is the minion display shown."
)
@ConfigEditorSlider(
minValue = 3,
maxValue = 30,
minStep = 1
)
@ConfigAccordionId(id = 1)
public int distance = 10;
@ConfigOption(name = "Hopper Profit", desc = "")
@ConfigEditorAccordion(id = 2)
public boolean hopperProfit = false;
@Expose
@ConfigOption(name = "Hopper Profit Display", desc = "Using the held coins and the last empty time to calculate the coins a hopper collects in a day")
@ConfigEditorBoolean
@ConfigAccordionId(id = 2)
public boolean hopperProfitDisplay = true;
@Expose
@ConfigOption(name = "Best Sell Method Position", desc = "")
@ConfigEditorButton(runnableId = "hopperProfitDisplay", buttonText = "Edit")
@ConfigAccordionId(id = 2)
public Position hopperProfitPos = new Position(10, 10, false, true);
@ConfigOption(name = "Minion Craft Helper", desc = "")
@ConfigEditorAccordion(id = 3)
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 = 3)
public boolean minionCraftHelperEnabled = false;
@Expose
@ConfigOption(name = "Minion Craft Helper Position", desc = "")
@ConfigEditorButton(runnableId = "minionCraftHelper", buttonText = "Edit")
@ConfigAccordionId(id = 3)
public Position minionCraftHelperPos = new Position(10, 10, false, true);
@Expose
@ConfigOption(name = "Hide Mob Nametag", desc = "Hiding the nametag of mobs close to minions")
@ConfigEditorBoolean
public boolean hideMobsNametagNearby = false;
}
|