Package-level declarations
Types
Link copied to clipboard
data class BedrockServerStatus(val description: TextComponent, val players: Players, val version: Version, val ping: Long, val levelName: String, val gameMode: GameMode, val serverUniqueID: String) : ServerStatus
Represents the status of a Minecraft Bedrock server.
Link copied to clipboard
Represents the various game modes. For tech.aliorpse.mcutils.modules.server.BedrockServer.getStatus.
Link copied to clipboard
data class JavaServerStatus(val description: TextComponent, val players: Players, val version: Version, val ping: Long?, val enforcesSecureChat: Boolean = false, val favicon: String?) : ServerStatus
Represents the status of a Java Edition Minecraft server.
Link copied to clipboard
Represents the status of a server.
Link copied to clipboard
data class TextComponent(val text: String, val color: String = "", val styles: EnumSet<TextStyle> = EnumSet.noneOf(TextStyle::class.java), val extra: List<TextComponent> = emptyList())
Represents a component of the MOTD.
Link copied to clipboard
Proper styles for the TextComponent.