@@ -49,6 +49,7 @@ A simple and customizable chat plugin for Hytale servers.
4949- [x] Multiple spam checks including repeated messages & capslock spam
5050- [x] Chat cooldown configurable per channel
5151- [x] Chat auto-mod with support for regex
52+ - [x] Players can ignore other players
5253- [x] Support for PlaceholderAPI everywhere in the plugin
5354- [ ] Player mention system
5455- [ ] Discord integration & sync
@@ -60,6 +61,8 @@ A simple and customizable chat plugin for Hytale servers.
6061- ` /chat ` - Opens the chat customization menu;
6162- ` /chat settings ` - Opens the user settings menu;
6263- ` /chat spy ` - Toggle chat spy;
64+ - ` /ignore <player> ` - Ignore a player, hiding their messages;
65+ - ` /unignore <player> ` - Unignore a player, showing their messages again;
6366- ` /tell <player> ` - Change the default chat to this private channel;
6467- ` /tell <player> <message> ` - Sends a private message;
6568- ` /nickname set <nickname> ` - Changes your nickname;
@@ -73,6 +76,8 @@ A simple and customizable chat plugin for Hytale servers.
7376- ` herochat.commands.nickname ` - Permission for player to use the ` /nickname ` command
7477- ` herochat.commands.nickname.set ` - Permission for player to use the ` /nickname set ` command
7578- ` herochat.commands.nickname.clear ` - Permission for player to use the ` /nickname clear ` command
79+ - ` herochat.commands.ignore ` - Permission for player to use the ` /ignore ` command
80+ - ` herochat.commands.unignore ` - Permission for player to use the ` /unignore ` command
7681- ` herochat.nickname.style.colors ` - Permission to use colors on the nickname
7782- ` herochat.nickname.style.rainbow ` - Permission to use rainbow on the nickname
7883- ` herochat.nickname.style.gradient ` - Permission to use gradient on the nickname
@@ -212,7 +217,13 @@ specific channel. A channel ID is its file name.
212217 "ChatNoRecipients" : " {prefix}{#FF5555}No one hears you." ,
213218 "ChatCooldown" : " {prefix}{#FF5555}Please wait before sending another message." ,
214219 "ChatSpamWarning" : " {prefix}{#FF5555}Please do not spam." ,
215- "ChatCapslockWarning" : " {prefix}{#FF5555}Please do not abuse capslock!" ,
220+ "ChatCapslockWarning" : " {prefix}{#FF5555}Please do not abuse capslock!"
221+ "IgnoreSelf" : " {prefix}{#FF5555}You cannot ignore yourself." ,
222+ "IgnoreSuccess" : " {prefix}{#AAAAAA}You ignored {#FFFFFF}{player}{#AAAAAA}." ,
223+ "IgnoreAlready" : " {prefix}{#FF5555}You already ignored {#FFFFFF}{player}{#FF5555}." ,
224+ "UnignoreSelf" : " {prefix}{#FF5555}You cannot unignore yourself." ,
225+ "UnignoreSuccess" : " {prefix}{#AAAAAA}You unignored {#FFFFFF}{player}{#AAAAAA}." ,
226+ "UnignoreNotIgnored" : " {prefix}{#FF5555}{#FFFFFF}{player}{#FF5555} is not ignored." ,
216227 "PrivateChatStarted" : " {prefix}{#AAAAAA}You are now in a private conversation with {#FFFFFF}{target}{#AAAAAA}." ,
217228 "PrivateChatPlayerNotFound" : " {prefix}{#FF5555}The player is not online." ,
218229 "PrivateChatSelf" : " {prefix}{#FF5555}You cannot start a private conversation with yourself." ,
0 commit comments