Companion
object Companion
Functions
Link copied to clipboard
Centers a message by adding appropriate spacing.
Link copied to clipboard
Color a string using the MiniMessage API or Bukkit's legacy color codes You can use placeholders using PlaceholderAPI but you need to set it up in your plugin @onEnable first using SystemCore.placeHolderAPIHook(true)
Colors a list of strings using MiniMessage API or Bukkit's legacy color codes.
Link copied to clipboard
Formats a number (Int or String) into a string with thousands separators.
Link copied to clipboard
fun progressBar(value: Double, max: Double, length: Int = 10, symbol: String = "|", filledColor: String = "#e6ff59", emptyColor: String = "#AAAAAA"): String
Creates a progress bar string representation.
fun progressBar(value: Int, max: Int, length: Int = 10, symbol: String = "|", filledColor: String = "#e6ff59", emptyColor: String = "#AAAAAA"): String
Creates a progress bar string representation with integer values.
Link copied to clipboard
Capitalizes the first letter of a string and converts the rest to lowercase.