-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathHelperConfig.java
136 lines (97 loc) · 3.17 KB
/
HelperConfig.java
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
package de.hysky.skyblocker.config.configs;
import de.hysky.skyblocker.utils.waypoint.Waypoint;
import dev.isxander.yacl3.config.v2.api.SerialEntry;
public class HelperConfig {
@SerialEntry
public boolean enableNewYearCakesHelper = true;
@SerialEntry
public boolean enableBitsTooltip = true;
@SerialEntry
public boolean enableWardrobeHelper = true;
@SerialEntry
public boolean showKeybinds = false;
@SerialEntry
public MythologicalRitual mythologicalRitual = new MythologicalRitual();
@SerialEntry
public Jerry jerry = new Jerry();
@SerialEntry
public Experiments experiments = new Experiments();
@SerialEntry
public Fishing fishing = new Fishing();
@SerialEntry
public FairySouls fairySouls = new FairySouls();
@SerialEntry
public ChocolateFactory chocolateFactory = new ChocolateFactory();
@SerialEntry
public Carnival carnival = new Carnival();
@SerialEntry
public Bazaar bazaar = new Bazaar();
@SerialEntry
public ItemPrice itemPrice = new ItemPrice();
public static class MythologicalRitual {
@SerialEntry
public boolean enableMythologicalRitualHelper = true;
}
public static class Jerry {
@SerialEntry
public boolean enableJerryTimer = false;
}
public static class Experiments {
@SerialEntry
public boolean enableChronomatronSolver = true;
@SerialEntry
public boolean enableSuperpairsSolver = true;
@SerialEntry
public boolean enableUltrasequencerSolver = true;
}
public static class Fishing {
@SerialEntry
public boolean enableFishingHelper = true;
@SerialEntry
public boolean enableFishingTimer = false;
@SerialEntry
public boolean changeTimerColor = true;
@SerialEntry
public float fishingTimerScale = 1f;
@SerialEntry
public boolean hideOtherPlayersRods = false;
}
public static class FairySouls {
@SerialEntry
public boolean enableFairySoulsHelper = false;
@SerialEntry
public boolean highlightFoundSouls = true;
@SerialEntry
public boolean highlightOnlyNearbySouls = false;
}
public static class ChocolateFactory {
@SerialEntry
public boolean enableChocolateFactoryHelper = true;
@SerialEntry
public boolean enableEggFinder = true;
@SerialEntry
public boolean sendEggFoundMessages = true;
@SerialEntry
public Waypoint.Type waypointType = Waypoint.Type.WAYPOINT;
@SerialEntry
public boolean enableTimeTowerReminder = true;
@SerialEntry
public boolean straySound = true;
}
public static class Carnival {
@SerialEntry
public boolean catchAFishHelper = true;
@SerialEntry
public boolean zombieShootoutHelper = true;
}
public static class Bazaar {
@SerialEntry
public boolean enableBazaarHelper = true;
}
public static class ItemPrice {
@SerialEntry
public boolean enableItemPriceLookup = true;
@SerialEntry
public boolean enableItemPriceRefresh = true;
}
}