blob: 40248d74d15d7d8882c8c2925c1c1f42e9f96e3c (
plain)
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
|
package at.hannibal2.skyhanni.config.features;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.moulberry.moulconfig.annotations.Accordion;
import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean;
import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class CommandsConfig {
@ConfigOption(name = "Tab Complete", desc = "")
@Accordion
@Expose
public TabCompleteConfig tabComplete = new TabCompleteConfig();
public static class TabCompleteConfig {
@Expose
@ConfigOption(name = "Warps", desc = "Tab complete the warp-point names when typing §e/warp <TAB>§7.")
@ConfigEditorBoolean
@FeatureToggle
public boolean warps = true;
@Expose
@ConfigOption(name = "Island Players", desc = "Tab complete other players on the same island.")
public boolean islandPlayers = true;
@Expose
@ConfigOption(name = "Friends", desc = "Tab complete friends from your friends list.")
@ConfigEditorBoolean
@FeatureToggle
public boolean friends = true;
@Expose
@ConfigOption(name = "Only Best Friends", desc = "Only Tab Complete best friends.")
@ConfigEditorBoolean
@FeatureToggle
public boolean onlyBestFriends = false;
@Expose
@ConfigOption(name = "Party", desc = "Tab complete Party Members.")
@ConfigEditorBoolean
@FeatureToggle
public boolean party = true;
@Expose
@ConfigOption(name = "VIP Visits", desc = "Tab complete the visit to special users with cake souls on it.")
@ConfigEditorBoolean
@FeatureToggle
public boolean vipVisits = true;
@Expose
@ConfigOption(name = "/gfs Sack", desc = "Tab complete §e/gfs §7sack items.")
@ConfigEditorBoolean
@FeatureToggle
public boolean gfsSack = true;
}
@Expose
@ConfigOption(name = "Fandom Wiki", desc = "Use Fandom wiki (§ehypixel-skyblock.fandom.com§7) instead of the Hypixel wiki (§ewiki.hypixel.net§7).")
@ConfigEditorBoolean
@FeatureToggle
public boolean useFandomWiki = false;
@Expose
@ConfigOption(name = "Party transfer", desc = "Allows §e/pt <player> §7as alias for §e/party transfer§7.\n" +
"§7SkyBlock command §e/pt §7to check the play time still works.")
@ConfigEditorBoolean
@FeatureToggle
public boolean usePartyTransferAlias = true;
@Expose
@ConfigOption(name = "Replace Warp Is", desc = "Adds §e/warp is §7alongside §e/is§7. Idk why. Ask §cKaeso")
@ConfigEditorBoolean
@FeatureToggle
public boolean replaceWarpIs = false;
}
|