public static void sendLine(CommandSender sender, String line) {
int len = 68;
if (line.length() < len)
Util.sendMessage(sender, "&8| " + line);
else {
CustomColor lastColor = CustomColor.WHITE;
for (int i = 0; i < line.length(); i+=len) {
String str = (i+len>line.length()?line.substring(i):line.substring(i, i+len));
Util.sendMessage(sender, "&8| " + lastColor.getCustom() + str);
lastColor = Util.getLastColor(str);
}
}
}