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
|
package at.hannibal2.skyhanni.config.features.skillprogress;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
import io.github.notenoughupdates.moulconfig.observer.Property;
public class SkillETADisplayConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Show a display of your current active skill " +
"with the XP/hour rate, ETA to the next level and current session time.")
@ConfigEditorBoolean
@FeatureToggle
public Property<Boolean> enabled = Property.of(false);
@Expose
@ConfigOption(name = "Farming", desc = "After how many seconds should the Farming session timer pause.")
@ConfigEditorSlider(minStep = 1, minValue = 3, maxValue = 60)
public int farmingPauseTime = 3;
@Expose
@ConfigOption(name = "Mining", desc = "After how many seconds should the Mining session timer pause.")
@ConfigEditorSlider(minStep = 1, minValue = 3, maxValue = 60)
public int miningPauseTime = 3;
@Expose
@ConfigOption(name = "Combat", desc = "After how many seconds should the Combat session timer pause.")
@ConfigEditorSlider(minStep = 1, minValue = 3, maxValue = 60)
public int combatPauseTime = 30;
@Expose
@ConfigOption(name = "Foraging", desc = "After how many seconds should the Foraging session timer pause.")
@ConfigEditorSlider(minStep = 1, minValue = 3, maxValue = 60)
public int foragingPauseTime = 3;
@Expose
@ConfigOption(name = "Fishing", desc = "After how many seconds should the Fishing session timer pause.")
@ConfigEditorSlider(minStep = 1, minValue = 3, maxValue = 60)
public int fishingPauseTime = 15;
}
|