8000 GitHub - TeamMonumenta/NBTEditor: An in-game NBT editor for Bukkit.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

TeamMonumenta/NBTEditor

 
 

Repository files navigation

NBTEditor

NBTEditor is an in-game NBT editor for Bukkit/Minecraft servers such as Spigot and Paper.

More information on the NBTEditor BukkitDev page.

This is a fork of https://github.com/goncalomb/NBTEditor maintained by the Monumenta team. Monumenta is a community-developed free-to-play Minecraft MMORPG - learn more at https://www.playmonumenta.com/.

Note that this fork is not API compatible with NBTEditor, and has diverged significantly. As of this writing in 2022, the original NBTEditor has been abandoned for years. It is unlikely that this fork will ever be reconciled with the original NBTEditor should it return to active development. We will do our best to develop a usable tool in the spirit of the original NBTEditor, but the main priority is as a usuable tool for mob development for Monumenta.

Note that we have also developed a complementary plugin, Library of Souls, which integrates with NBTEditor to manage hundreds or thousands of unique mobs across various world locations.

Download

The latest version, 4.0, supports 1.16.4, 1.16.5, and 1.18.2.

Download it from GitHub Packages. The file you want is the one that ends with ".jar".

Download

Maven dependency

<repository>
	<id>monumenta</id>
	<name>Monumenta Maven Repo</name>
	<url>https://maven.playmonumenta.com/releases</url>
</repository>
<dependencies>
	<dependency>
		<groupId>com.playmonumenta</groupId>
		<artifactId>nbteditor</artifactId>
		<version>4.0</version>
		<scope>provided</scope>
	</dependency>
</dependencies>

Gradle (kotlin):

maven {
    name = "monumenta"
    url = uri("https://maven.playmonumenta.com/releases")
}

dependencies {
	compileOnly("com.playmonumenta:nbteditor:4.0")
}

Gradle (groovy):

maven {
    name "monumenta"
    url "https://maven.playmonumenta.com/releases"
}

dependencies {
	compileOnly "com.playmonumenta:nbteditor:4.0"
}

Note that the groupId was changed to clearly differentiate this maven artifact from the original project, which is not directly compatible. Code files retain their com.goncalomb.bukkit.nbteditor heritage.

Documentation / Help

Check the documentation on the Wiki.

Need help? Read the FAQ, or join the Monumenta Discord and ping @Combustible#9141

Contributing

Contributions to the main branch are welcome. Keep the same code style and use tabs for indentation.

Feel free to send suggestions and bug reports through Issues or on the Monumenta Discord

License

NBTEditor is available under the GPLv3 license, check LICENSE.txt.

About

An in-game NBT editor for Bukkit.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Java 100.0%
0