Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 0e31956

Browse files
authored
chore(messages): More customization for default messages
1 parent dbf268c commit 0e31956

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

api/src/main/java/me/qeklydev/clientviewer/config/Messages.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ public final class Messages implements UsableConfiguration {
1212
public String unknownCommand = "<prefix> <red>That sub-command doesn't exist!";
1313

1414
public List<String> help = List.of(
15-
"<gradient:aqua:green>ClientViewer</gradient> <gray>></gray> Available Commands List:",
16-
"<gray> - <green><hover:show_text:''><click:run_command:'/cv help'>/clientviewer help</click></hover> <gray>Shows this messages.",
17-
"<gray> - <green><hover:show_text:''><click:run_command:'/cv reload'>/clientviewer reload</click></hover> <gray>Reloads the plugin configuration.",
18-
"<gray> - <green><hover:show_text:''><click:run_command:'/client'>/client [player]</click></hover> <gray>Shows your client information, or for another player.");
15+
"<gradient:aqua:green>[⭐] ClientViewer [⭐] Available Commands List ->",
16+
"<gray> <green><hover:show_text:''><click:run_command:'/cv help'>/clientviewer help</click></hover> <gray>Shows this messages.",
17+
"<gray> <green><hover:show_text:''><click:run_command:'/cv reload'>/clientviewer reload</click></hover> <gray>Reloads the plugin configuration.",
18+
"<gray> <green><hover:show_text:''><click:run_command:'/client'>/client [player]</click></hover> <gray>Shows your client information, or for another player.");
1919

20-
public String reloadSuccess = "<prefix> <red>The plugin configurations have been reloaded successful.";
20+
public String reloadSuccess = "<prefix> The plugin configurations have been reloaded successful.";
2121

2222
public String reloadFailed = "<prefix> <red>Something went wrong during reloading process, check the console.";
2323

@@ -26,20 +26,20 @@ public final class Messages implements UsableConfiguration {
2626
public String offlinePlayer = "<prefix> <red>The specified player is not connected now.";
2727

2828
public List<String> ownClientInformation = List.of(
29-
"<gray>Showing your client information",
29+
"<dark_gray>[<yellow>⭐</yellow>] <gray>Showing your client information",
3030
"<green> • <white>Brand name: <light_purple><brand-name>",
3131
"<green> • <white>Protocol Version Number: <light_purple><protocol-number>");
3232

3333
public List<String> thirdPartyClientInformation = List.of(
34-
"<gray>Showing client information of <yellow><player>",
34+
"<dark_gray>[<yellow>⭐</yellow>] <gray>Showing client information of <yellow><player>",
3535
"<green> • <white>Brand name: <light_purple><brand-name>",
3636
"<green> • <white>Protocol Version Number: <light_purple><protocol-number>");
3737

3838
public List<String> clientBrandUnknown = List.of(
39-
"<red>The brand name provided by your client is null/unknown.",
39+
"<dark_gray>[<red>[❌]</red>] <red>The brand name provided by your client is null/unknown. <dark_gray>[<red>[❌]</red>]",
4040
"<gradient:red:gold>Please try again, or use another client to join!");
4141

4242
public List<String> clientBrandDisallowed = List.of(
43-
"<red>The client you're using has been blocked by the administrators.",
43+
"<dark_gray>[<red>[❌]</red>] <red>The client you're using has been blocked by the administrators. <dark_gray>[<red>[❌]</red>]",
4444
"<gradient:blue:red>Use another client to play on the server!");
4545
}

0 commit comments

Comments
 (0)