Skip to main content

Nukkit-MOT

Nukkit-MOT

Introduction

Nukkit-MOT is a special version of Nukkit Minecraft Bedrock Edition server software.
It is developed based on the last open source version of NukkitPetteriM1Edition

note: if you need higher version features, please use PowerNukkitX.

What's new in Nukkit-MOT?

  1. Support for 1.2 – 1.21.70 version (you can set the minimum protocol in the config)
  2. Supports most entities with AI
  3. Support for the nether world and The Еnd
  4. Generation of dungeons and caves
  5. Support for vanilla commands

How to install?

  1. Install java 17 or higher
  2. Download the .jar file from the links below
  3. Write a command to run: java -jar Nukkit-MOT-SNAPSHOT.jar (change Nukkit-MOT-SNAPSHOT.jar to the name of the file you downloaded)

Maven

Repository:

<repositories>
<repository>
<id>repo-lanink-cn</id>
<url>https://repo.lanink.cn/repository/maven-public/</url>
</repository>
</repositories>

Dependencies:

<dependencies>
<dependency>
<groupId>cn.nukkit</groupId>
<artifactId>Nukkit</artifactId>
<version>MOT-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>

Gradle

Repository:

repositories {
mavenCentral()
maven("https://repo.lanink.cn/repository/maven-public/")
}

Dependencies:

dependencies {
compileOnly("cn.nukkit:Nukkit:MOT-SNAPSHOT")
}