BuildBedrockwithPowerNukkitX.
Open-source server software for Minecraft: Bedrock Edition, built by passioned volunteers.
// features
What it does
Custom content
Custom blocks, items and entities via the API. Vanilla clients just see them.
- </>Write@EventHandler.jarBuildcompiled↓Drop/plugins/
Plugin API
Event-driven Java API. Write a listener, build a jar, drop it in.
- OceanPlainsStoneSnow
World generation
Near-vanilla worldgen with custom generator and structure populator support.
Mobile
iOS · Android
Console
Xbox · PS · Switch
PC
Windows
vanillaPNX
server
Vanilla
Almost 100% vanilla behavior. Players shouldn't notice the difference.
Fast updates
New Minecraft versions are usually supported within hours.
Writing
plugins.
Write a listener, build a jar, put it on GitHub. The docs cover the rest.
Write a listener
Annotate a method with @EventHandler. Annotate the class with @EventListener. The server routes events automatically.
Build a jar
Maven or Gradle, no runtime deps to shade. One artifact, ready to ship.
Drop or publish
Copy to /plugins for local testing, or push to Jarbage for distribution.
public final class WelcomePlugin extends PluginBase {
@Override
public void onEnable() {
getLogger().info("WelcomePlugin ready.");
}
@EventListener
public static final class PlayerListener implements Listener {
@EventHandler
public void onJoin(PlayerJoinEvent event) {
event.getPlayer().sendMessage("Welcome to the server!");
}
}
}Where the speed comes from
Caching
Aggressive caching and precomputation cuts repeated work per tick.
Heavily multithreaded
Levels tick on their own threads. One busy world doesn't drag the others down.
Gameplay toggles
Vanilla features can be switched off individually - useful for minigame servers that only need a subset of gameplay mechanics.
Community
Questions, bugs, ideas - this is where the project happens.
active in the last 30 days
Server sponsor
onlineKept online on real hardware by
.
PowerNukkitX doesn't run on donations alone. Hosting for this site, the docs and the plugin hub is provided by Winheberg, a French infrastructure provider — free of charge, so the project stays online for everyone.
- Real hardware
- Based in France
- Free for the project
First order
1.99€1.69€/mo
with the code below on your first order
promo code
PNX15