Minecraft: Pi Edition Modding Project https://discord.com/invite/aDqejQGMMy
Go to file
TheBrokenRail 62204aa1bf
minecraft-pi-reborn/pipeline/head This commit looks good Details
Project Rename
2021-01-27 11:13:06 -05:00
build Rework Packaging 2020-12-04 16:27:28 -05:00
core Rework Packaging 2020-12-04 16:27:28 -05:00
debian Project Rename 2021-01-27 11:13:06 -05:00
mods Project Rename 2021-01-27 11:13:06 -05:00
scripts Project Rename 2021-01-27 11:13:06 -05:00
.dockerignore Improve Comments 2020-10-26 15:58:28 -04:00
.gitignore Switch To 32-Bit Docker Image 2020-11-25 21:17:40 -05:00
CREDITS.md Add Smooth Lighting 2020-11-20 16:38:23 -05:00
Dockerfile.build Fix CI 2020-10-16 16:04:03 -04:00
Dockerfile.client Name Property + VTable Offsets 2020-12-17 22:22:56 -05:00
Dockerfile.server Remove XVFB From Dedicated Server 2020-10-30 18:25:08 -04:00
Jenkinsfile Project Rename 2021-01-27 11:13:06 -05:00
LICENSE Add License 2020-10-10 19:06:15 -04:00
MODDING.md Project Rename 2021-01-27 11:13:06 -05:00
README.md Project Rename 2021-01-27 11:13:06 -05:00

README.md

Minecraft: Pi Edition: Reborn

Minecraft: Pi Edition Modding Project

Setup

  1. Remove Old Minecraft: Pi Edition Package If Installed (sudo apt remove minecraft-pi)
  2. Download Appropriate Package (See Table Below) From Here
  3. Install With sudo apt install ./<Path To File>

Packages

Package Description
minecraft-pi-reborn-server Minecraft Pi Edition Modded Into A Dedicated Server
minecraft-pi-reborn-virgl Minecraft Pi Edition Using VirGL For Hardware Acceleration (Recommended For Desktop)
minecraft-pi-reborn-native Minecraft: Pi Edition Using Docker Device Mounting For GPU Acceleration (Recommended For ARM Devices (ie. Raspberry Pi, PinePhone, etc))

General Notes

Docker Versions

While the distribution-provided version of Docker is fine for most systems, in rare cases it can be outdated and cause bugs. Before reporting a bug, try using the official builds of Docker. These can be installed by following your distribution's instructions at https://docs.docker.com/engine/install.

Specific Notes

Debian/Raspbian Buster

By default Raspbian Buster ships an older version of the package libseccomp2. This package is used to block certain dangerous system calls from running inside Docker containers. The included version accidentally blocks the system call clock_gettime64, this causes bugs inside Minecraft: Pi Edition. However, the Debian buster-backports repo includes an updated version. You can enable the buster-backports repo and update libseccomp2 by running:

# Install Backports Key
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 04EE7237B7D453EC
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 648ACFD622F3D138
# Install Backports Repository
echo 'deb http://deb.debian.org/debian buster-backports main' | sudo tee -a /etc/apt/sources.list
# Update APT Index
sudo apt update
# Install Updated libseccomp2
sudo apt install -t buster-backports libseccomp2

PinePhone (Mobian)

This supports running on a PinePhone using Mobian. However, you will need to attach a keyboard and mouse because Minecraft: Pi Edition does not have touch support.

Troubleshooting Crashes

Game logs are located in /tmp/minecraft-pi.

Error response from daemon: error gathering device information while adding custom device "/dev/dri": no such file or directory

Make sure you are using the correct GPU drivers for your system. If you are using a Raspberry Pi, make sure you have set your GPU driver to Full KMS or Fake KMS in raspi-config.

Segmentation Fault

  1. Attempt To Reproduce Issue And Record Instructions
  2. Report On Issue Tracker Including The Instructions To Reproduce

Dedicated Server

The dedicated server is a version of Minecraft: Pi Edition modified to run in a headless environment. It loads settings from a server.properties file.

To use, install the minecraft-pi-server package and run minecraft-pi-server. It will generate the world and server.properties in the current directory.

This is also compatible with MCPE 0.6.1.

Limitations

  • Player data is not saved because of limitations with MCPE LAN worlds
    • An easy workaround is to place your inventory in a chest before logging off
  • Survival mode servers are only compatible with minecraft-pi-reborn clients

Modding

View Modding

Credits

View Credits