Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. qosmiof2

    Resource Formatting numbers - Exp, items etc.

    public static String format(long i) { String formatted = ""; String end = ""; NumberFormat format = NumberFormat.getInstance(); formatted = format.format(i).toString(); if (i >= 1000) { end = "k"; if (i...
Top