Package uk.co.oliwali.HawkEye.util.Util

Examples of uk.co.oliwali.HawkEye.util.Util.CustomColor


  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);
      }
    }
  }
View Full Code Here

TOP

Related Classes of uk.co.oliwali.HawkEye.util.Util.CustomColor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.