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
|
package at.hannibal2.skyhanni.config.features.commands;
import at.hannibal2.skyhanni.config.FeatureToggle;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.Accordion;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class CommandsConfig {
@ConfigOption(name = "Tab Complete", desc = "")
@Accordion
@Expose
public TabCompleteConfig tabComplete = new TabCompleteConfig();
@ConfigOption(name = "Better §e/wiki", desc = "")
@Accordion
@Expose
public BetterWikiCommandConfig betterWiki = new BetterWikiCommandConfig();
@ConfigOption(name = "Reverse Party Transfer", desc = "")
@Accordion
@Expose
public ReversePartyTransferConfig reversePT = new ReversePartyTransferConfig();
@ConfigOption(name = "Party Commands", desc = "Shortens party commands and allows tab-completing for them. " +
"\n§eCommands: /pt, /pp, /pko, /pk, /pd §7(SkyBlock command §e/pt §7to check your play time will still work)")
@Expose
@ConfigEditorBoolean
@FeatureToggle
public boolean shortCommands = true;
@ConfigOption(name = "Party Kick Reason", desc = "Send a reason when kicking people using §e/pk lrg89 Dupe Archer §7or §e/party kick nea89o Low Cata Level§7.")
@Expose
@ConfigEditorBoolean
@FeatureToggle
public boolean partyKickReason = true;
@Expose
@ConfigOption(name = "Replace §e/warp is", desc = "Add §e/warp is §7alongside §e/is§7. Idk why. Ask §cKaeso")
@ConfigEditorBoolean
@FeatureToggle
public boolean replaceWarpIs = false;
@Expose
@ConfigOption(name = "Lower Case §e/viewrecipe", desc = "Add support for lower case item IDs to the Hypixel command §e/viewrecipe§7.")
@ConfigEditorBoolean
@FeatureToggle
public boolean viewRecipeLowerCase = true;
@Expose
@ConfigOption(name = "Fix Transfer Cooldown", desc = "Waits for the transfer cooldown to complete if you try to warp.")
@ConfigEditorBoolean
@FeatureToggle
public boolean transferCooldown = false;
@Expose
@ConfigOption(name = "Transfer Cooldown Ended Message", desc = "Sends a message in chat when the transfer cooldown ends.")
@ConfigEditorBoolean
@FeatureToggle
public boolean transferCooldownMessage = false;
}
|