An open API service indexing awesome lists of open source software.

https://github.com/justdoom/minestomdatasaving

A world saving library for Minestom
https://github.com/justdoom/minestomdatasaving

java minestom minestom-library

Last synced: about 2 months ago
JSON representation

A world saving library for Minestom

Awesome Lists containing this project

README

          

# MineStomDataSaving

This is discontinued/probably doesnt work

This is a library that allows you to easily save and load worlds

Todo
- Player data saving

Done
- World data saving

## Setup

### Maven

Repository
```


jitpack.io
https://jitpack.io

```

Dependency
```

com.github.justdoom
minestomdatasaving
-SNAPSHOT

```

### Gradle

Repository
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```

Dependency
```
dependencies {
implementation 'com.github.justdoom:minestomdatasaving:-SNAPSHOT'
}
```

## API usage

Loading a world
```java
InstanceContainer instanceContainer = MineStomDataSaving.loadWorld("worlds/lobby");
```

Saving a world
```java
MineStomDataSaving.saveWorld("worlds/lobby", instanceContainer);
```