PizzaServer is a side project of mine that has the goal of being Minecraft Bedrock server software designed for all versions of 1.16 higher than 1.16.100. Come join the Discord Server here!
- Run
./gradlew build_all - Navigate to
build/output/ - Copy the jar file
PizzaServer-Server-all.jarto the root directory of your server.
| Name | Description |
|---|---|
| commons | Various utility structures/data used across multiple modules |
| api | Server API that serves to separate plugins and the actual implementation |
| server | Server implementation |
| worldfile | Parses world formats into usable objects (currently only .mcworld) |
- Cloudburst for providing the RakNet implementation as well as helping guide me through implementing the Bedrock protocol.
- Minecraft files sent over the network (e.g.
biome_definitions.nbtorruntime_item_states.json) are retrieved through Cloudburst's Data repository.
- Minecraft files sent over the network (e.g.
- The contributors over at wiki.vg/Bedrock_Protocol for providing packet documentation.