Tired of writing message-sending codes every time you want to send information?
This code allows you to only code for one line to send messages and broadcasts without polluting the console.
PS: Supports color codes.
Replace "&" with "§" to fix color messages
If you don't want "&" to be replaced, please use "&&".
Messager.Color(String string);
Send message to a player
Messager.sendMessage(Player player, String message);
Send message to a command sender
Messager.senderMessage(Sender sender, String message);
Send message to all online players
Messager.broadcastMessage(String message);
Send message to console and all online players
Messager.broadcastMessageAll(String message);
Send title to a player
Messager.sendTitle(Player player, String title, String subtitle);
Send title to all online players
Messager.broadcastTitle(String title, String subtitle);
There are also Javadoc comments before every method.