LiteCommands Help

Install (adventure-platform)

LiteCommands Adventure Platform is an extension for supporting Kyori Adventure features for platforms that are doesn't have native support for it. E.g. Bukkit, BungeeCord, etc.

Dependency

Add the following dependency to your project:

implementation("dev.rollczi:litecommands-adventure-platform:3.4.1")
<dependency> <groupId>dev.rollczi</groupId> <artifactId>litecommands-adventure-platform</artifactId> <version>3.4.1</version> </dependency>

Registering the extension

Register the extension in the LiteCommands builder:

.extension(new LiteAdventurePlatformExtension<>(this.audienceProvider), config -> config .miniMessage(true) .legacyColor(true) .colorizeArgument(true) .serializer(this.miniMessage) )
  • audienceProvider - the provider for the Audience object. If you don't have it, read the Adventure Platform page for more information.

  • miniMessage() - enables the MiniMessage support. (<red>, <gradient:red:blue>, <#ff0000>, etc.)

  • legacyColor() - enables the legacy color support. &c, &a, etc.

  • colorizeArgument() - enables the default colorizer for the @Arg Component argument.

  • serializer() - sets the custom serializer (colorizer) for the @Arg Component argument. (if replaced, the miniMessage() and legacyColor() will be ignored)

Full Example

Last modified: 18 December 2023