blob: fc6d0be06fc2f65825e8a9acdb2e31693b6c6a1b (
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
|
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.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorKeybind;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
import org.lwjgl.input.Keyboard;
public class BetterWikiCommandConfig {
@Expose
@ConfigOption(
name = "Enabled",
desc = "Improve the functionality of the /wiki command.\n" +
"This is required for all of the below features."
)
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
// TODO Make this method not suck
@Expose
@ConfigOption(name = "SkyBlock Guide", desc = "Use SkyHanni's method in the SkyBlock Guide.")
@ConfigEditorBoolean
@FeatureToggle
public boolean sbGuide = false;
@Expose
@ConfigOption(
name = "Use Fandom Wiki",
desc = "Use Fandom Wiki (§ehypixel-skyblock.fandom.com§7) instead of " +
"the Hypixel Wiki (§ewiki.hypixel.net§7) in most wiki-related chat messages."
)
@ConfigEditorBoolean
@FeatureToggle
public boolean useFandom = false;
@Expose
@ConfigOption(
name = "Auto Open",
desc = "Directly open the Wiki when running the command instead of having to click a message in chat."
)
@ConfigEditorBoolean
public boolean autoOpenWiki = false;
@Expose
@ConfigOption(
name = "Open from Menus",
desc = "Directly open the Wiki from menus instead of having to click a message in chat."
)
@ConfigEditorBoolean
public boolean menuOpenWiki = false;
@Expose
@ConfigOption(name = "Fandom Wiki Key", desc = "Search for an item on Wiki with this keybind.\n" +
"§cFor an optimal experience, do §lNOT §cbind this to a mouse button.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int wikiKeybind = Keyboard.KEY_NONE;
}
|