- Notifications
You must be signed in to change notification settings - Fork3
A kotlin/java lib that allows you to read and write MCA files in a clean way
License
NotificationsYou must be signed in to change notification settings
PowerNukkit/Region-Manipulator
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A Kotlin/Java library that allows you to read and writemca
files in a simple way.
Here you can find the library documentation:
You may also want to see thechangelog file to be aware of all changes in the tool that may impact you.
The library is shared in the maven center, so you don't need to declare any custom repository.
repositories { mavenCentral()// or jcenter()}dependencies { compile'br.com.gamemods:region-manipulator:2.0.0'}
<dependencies> <dependency> <groupId>br.com.gamemods</groupId> <artifactId>region-manipulator</artifactId> <version>2.0.0</version> </dependency></dependencies>
<dependencyorg="br.com.gamemods"name="region-manipulator"rev="2.0.0"/>
Download it frommaven central.
internalfunclearEntities(from:File,to:File) {val region=RegionIO.readRegion(from)val chunk= region[ChunkPos(region.position.xPos*32, region.position.zPos*32)]?:return chunk.level.getCompoundList("Entities").forEach {println(it.getString("id")+""+ it.getDoubleList("Pos")) } chunk.level["Entities"]= emptyListOf<NbtCompound>().toNbtList()RegionIO.writeRegion(to, region)}
About
A kotlin/java lib that allows you to read and write MCA files in a clean way
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.