aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2023-10-12 23:09:41 +1100
committerGitHub <noreply@github.com>2023-10-12 14:09:41 +0200
commit006d59f7c0613dd282e88ba41a21c0f74e1d1ae9 (patch)
tree4aef2950593948e030beebd73600105ce2524842 /src/main/java/at/hannibal2/skyhanni/config
parent04d130775715d351f5be19c40378963819442dfd (diff)
downloadskyhanni-006d59f7c0613dd282e88ba41a21c0f74e1d1ae9.tar.gz
skyhanni-006d59f7c0613dd282e88ba41a21c0f74e1d1ae9.tar.bz2
skyhanni-006d59f7c0613dd282e88ba41a21c0f74e1d1ae9.zip
Feature: Player symbols in chat (#467)
Adds chat symbols such as ironman/bingo/nether faction like SBA had/has #467
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
index 54bba1664..db8f21131 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
@@ -675,6 +675,28 @@ public class MiscConfig {
}
@Expose
+ @ConfigOption(name = "Player Chat Symbols", desc = "")
+ @Accordion
+ public ChatSymbols chatSymbols = new ChatSymbols();
+
+ public static class ChatSymbols {
+
+ @Expose
+ @ConfigOption(name = "Enabled", desc = "Adds extra symbols to the chat such as those from ironman, " +
+ "stranded, bingo or nether factions and places them next to your regular player emblems. " +
+ "Also allows emblems without sb level in chat.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean enabled = true;
+
+ @Expose
+ @ConfigOption(name = "Chat Symbol Location", desc = "Determines where the symbols should go in chat in relation to the " +
+ "player's name. Hidden will hide all emblems from the chat. §eRequires above setting to be on to hide the symbols.")
+ @ConfigEditorDropdown(values = {"Left", "Right", "Hidden"})
+ public int symbolLocation = 0;
+ }
+
+ @Expose
@ConfigOption(name = "Exp Bottles", desc = "Hides all the experience orbs lying on the ground.")
@ConfigEditorBoolean
@FeatureToggle