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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
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.annotations.*;
import io.github.moulberry.moulconfig.observer.Property;
import org.lwjgl.input.Keyboard;
public class Misc {
@Expose
@ConfigOption(name = "Pet", desc = "")
@ConfigEditorAccordion(id = 0)
public boolean pet = false;
@Expose
@ConfigOption(name = "Pet Display", desc = "Show the currently active pet.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean petDisplay = false;
@Expose
public Position petDisplayPos = new Position(-111, 221, false, true);
@Expose
@ConfigOption(name = "Time", desc = "")
@ConfigEditorAccordion(id = 1)
public boolean time = false;
@Expose
@ConfigOption(name = "Real Time", desc = "Display the current computer time, a handy feature when playing in full-screen mode.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
public boolean realTime = false;
@Expose
public Position realTimePos = new Position(10, 10, false, true);
@Expose
@ConfigOption(name = "Hide Armor", desc = "")
@ConfigEditorAccordion(id = 3)
public boolean hideArmor = false;
@Expose
@ConfigOption(name = "Hide Armor", desc = "Hide other players' armor.")
@ConfigEditorBoolean()
@ConfigAccordionId(id = 3)
public Property<Boolean> hideArmorEnabled = Property.of(false);
@Expose
@ConfigOption(name = "Own Armor", desc = "Hide your own armor.")
@ConfigEditorBoolean()
@ConfigAccordionId(id = 3)
public Property<Boolean> hideArmorOwn = Property.of(true);
@Expose
@ConfigOption(name = "Only Helmet", desc = "Only hide the helmet.")
@ConfigEditorBoolean()
@ConfigAccordionId(id = 3)
public Property<Boolean> hideArmorOnlyHelmet = Property.of(false);
@Expose
@ConfigOption(name = "Damage Splash", desc = "")
@ConfigEditorAccordion(id = 4)
public boolean damageSplash = false;
@Expose
@ConfigOption(name = "Hide Damage Splash", desc = "Hide all damage splashes anywhere in Skyblock.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 4)
public boolean hideDamageSplash = false;
@Expose
@ConfigOption(name = "Potion Effects", desc = "")
@ConfigEditorAccordion(id = 5)
public boolean potionEffects = false;
@Expose
@ConfigOption(name = "Non God Pot Effects", desc = "Display the active potion effects that are not part of the god pot.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 5)
public boolean nonGodPotEffectDisplay = false;
@Expose
public Position nonGodPotEffectPos = new Position(10, 10, false, true);
@Expose
@ConfigOption(name = "Crimson Reputation Helper", desc = "")
@ConfigEditorAccordion(id = 6)
public boolean reputationHelper = false;
@Expose
@ConfigOption(name = "Crimson Isle Reputation", desc = "Enable features around Reputation features in the Crimson Isle.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 6)
public boolean crimsonIsleReputationHelper = true;
@Expose
public Position crimsonIsleReputationHelperPos = new Position(10, 10, false, true);
@Expose
@ConfigOption(name = "Reputation Locations", desc = "Crimson Isles waypoints for locations to get reputation.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 6)
public boolean crimsonIsleReputationLocation = false;
@Expose
@ConfigOption(name = "Tia Relay", desc = "")
@ConfigEditorAccordion(id = 7)
public boolean tiaRelay = false;
@Expose
@ConfigOption(name = "Tia Relay Waypoint", desc = "Show the next relay waypoint for Tia the Fairy, where maintenance for the abiphone network needs to be done.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 7)
public boolean tiaRelayNextWaypoint = true;
@Expose
@ConfigOption(name = "Tia Relay All", desc = "Show all relay waypoints at once.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 7)
public boolean tiaRelayAllWaypoints = false;
@Expose
@ConfigOption(name = "Tia Relay Helper", desc = "Helps with solving the sound puzzle.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 7)
public boolean tiaRelayHelper = true;
@Expose
@ConfigOption(name = "Tia Relay Mute", desc = "Mutes the sound when close to the relay.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 7)
public boolean tiaRelayMute = true;
@Expose
@ConfigOption(name = "Tps Display", desc = "")
@ConfigEditorAccordion(id = 8)
public boolean tpsDisplay = false;
@Expose
@ConfigOption(name = "Tps Display", desc = "Show the TPS of the current server, like in Soopy.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 8)
public boolean tpsDisplayEnabled = false;
@Expose
public Position tpsDisplayPosition = new Position(10, 10, false, true);
@Expose
@ConfigOption(name = "Particle Hider", desc = "")
@ConfigEditorAccordion(id = 9)
public boolean particleHider = false;
@Expose
@ConfigOption(name = "Blaze Particles", desc = "Hide blaze particles.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 9)
public boolean hideBlazeParticles = false;
@Expose
@ConfigOption(name = "Fireball Particles", desc = "Hide fireball particles.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 9)
public boolean hideFireballParticles = true;
@Expose
@ConfigOption(name = "Fire Particles", desc = "Hide particles from the fire block.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 9)
public boolean hideFireBlockParticles = true;
@Expose
@ConfigOption(name = "Smoke Particles", desc = "Hide smoke particles.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 9)
public boolean hideSmokeParticles = false;
@Expose
@ConfigOption(name = "Far Particles", desc = "Hide particles that are more than 40 blocks away.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 9)
public boolean hideFarParticles = true;
@Expose
@ConfigOption(name = "Close Redstone Particles", desc = "Hide redstone particles around the player (appear for some potion effects).")
@ConfigEditorBoolean
@ConfigAccordionId(id = 9)
public boolean hideCloseRedstoneparticles = true;
@Expose
@ConfigOption(name = "Chicken Head Timer", desc = "")
@ConfigEditorAccordion(id = 10)
public boolean chickenHeadTimer = false;
@Expose
@ConfigOption(name = "Enabled", desc = "Show the cooldown until the next time you can lay an egg with the chicken head.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 10)
public boolean chickenHeadTimerDisplay = false;
@Expose
@ConfigOption(name = "Hide Chat", desc = "Hide the 'You lay an egg' chat message.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 10)
public boolean chickenHeadTimerHideChat = true;
@Expose
public Position chickenHeadTimerPosition = new Position(-372, 73, false, true);
@Expose
@ConfigOption(name = "Estimated Item Value", desc = "(Enchantments, reforging stone prices, gemstones, gemstones, drill parts and more)")
@ConfigEditorAccordion(id = 11)
public boolean estimatedItemValue = false;
@Expose
@ConfigOption(name = "Enable Estimated Price", desc = "Displays an estimated item value for the item you hover over.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 11)
public boolean estimatedIemValueEnabled = false;
@Expose
@ConfigOption(name = "Hotkey", desc = "Press this key to show the estimated item value.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE
|