String motd = getMessage("motd");
if (motd == null || motd.length() < 1) {
sender.sendMessage(ChatColor.RED + "MOTD not configured in CommandBook yet!");
} else {
CommandBook.callEvent(new MOTDSendEvent(sender));
sendMessage(sender,
replaceColorMacros(
ChatUtil.replaceMacros(
sender, motd)));