Skip to content
Retour au Blog
BetterAltay server software configuration interface with Minecraft Bedrock server settings displayed

BetterAltay: Running a Feature-Rich Minecraft Bedrock Server

ice
ice
@ice
Updated
87 vues
TL;DR:BetterAltay is maintained PHP-based server software for Minecraft: Bedrock Edition with real performance improvements, plugin support, and active development. It's what you use when vanilla Bedrock servers feel too limited and you need actual control.

"A server software for Minecraft: Bedrock Edition in PHP"

Benedikt05/BetterAltay · github.com
⭐ 117 stars💻 PHP📜 LGPL-3.0

If you run a Minecraft Bedrock server but feel limited by vanilla options or outdated server software, BetterAltay might be exactly what you're looking for. It's a PHP-based server platform that brings actual improvements to the Bedrock edition experience - better performance, more features, and solid plugin support. For server owners who want more control without switching to Java Edition or relying on stuck-in-time alternatives, this project fills a real gap.

What BetterAltay Is

BetterAltay is server software for Minecraft: Bedrock Edition written in PHP. Think of it as an evolved fork of older projects (PocketMine-MP and Altay) that someone actually maintains. The original Altay project went inactive, so Benedikt05 stepped in to keep the codebase moving forward.

Right now it supports Minecraft 26.10 and protocol version 944. That matters because Bedrock updates regularly, and outdated server software becomes a serious headache fast - you get stuck supporting old clients while new players can't join.

The project sits at 117 stars on GitHub, which honestly feels underrated given how useful it's. The community is small but active, with a Discord server where you can actually get help instead of shouting into the void.


Why You'd Run This

Most people running Bedrock servers end up frustrated because their options are either Microsoft's official realm system (limited, expensive) or technical nightmares (Java Edition only, or ancient Bedrock forks). BetterAltay exists in the middle ground.

Performance matters when you're hosting for friends or a community. The project highlights optimization improvements over the original Altay, so you're not dealing with the lag that plagued older Bedrock server solutions. And if you've ever tried running a vanilla server, you know resource efficiency is real.

But the real reason people use this is plugin availability. If you want custom gameplay - modified mechanics, mini-games, economy systems - you need API support. BetterAltay's API3 implementation means there's an actual ecosystem of community plugins you can drop in. That's not guaranteed with every server platform.


Installation: What You Need to Do

Setup isn't complicated, but it's more involved than clicking a launcher. Here's the real process:

First, grab the latest release from GitHub. Head to the releases page and download the BetterAltay.phar file (1.39.2 is current). You'll also need the startup scripts - grab start.sh (Linux/macOS) or start.cmd (Windows) from the repository and drop them in the same directory as the phar file.

bash
cd /path/to/your/server
wget https://github.com/Benedikt05/BetterAltay/releases/download/1.39.2/BetterAltay.phar
wget https://raw.githubusercontent.com/Benedikt05/BetterAltay/master/start.sh
chmod +x start.sh

Here's the part that trips people up: BetterAltay runs on PHP, so you need PHP binaries. The project maintainer provides them in a separate repository (Benedikt05/PHP-Binaries). Download those and extract them to your server directory. This matters because your system PHP might be incompatible or have the wrong extensions.

After that, just run your startup script and the server boots.

bash
./start.sh

Your server will generate a config file on first run. Look, the web interface lets you configure most settings without diving into YAML files, which honestly saves a lot of time compared to other server software.


Features That Matter

The latest release (1.39.2) added a few things worth knowing about. Boss bar colors got implemented, so custom boss fights actually look right now. They fixed a long-standing bug where all skulls rendered as skeleton skulls - if you build decorative skull walls, that's huge. And there's proper event handling for player swing animations, which sounds small but enables custom combat plugins.

The extended compatibility means you're not locked into an old client version while the rest of the Bedrock world moves on. That's not flashy, but it's critical for keeping a server alive long-term.

Plugin availability is honestly the standout feature. If you've played modded Java Edition, imagine having that plugin ecosystem available for Bedrock. You can add custom items, modify mob behavior, create entirely new game modes - the API3 system is solid enough that community developers actually support it.


What Can Go Wrong (And How to Avoid It)

Let's be real: this is community-maintained server software, not Minecraft's official implementation. Issues happen.

The most common problem is PHP binary incompatibility. If the provided binaries don't work on your system (sometimes an issue on certain Linux distributions), you're stuck troubleshooting. Check the Discord first - someone's probably hit your specific setup before.

Plugin conflicts can wreck everything. If two plugins try to modify the same behavior, you get strange bugs that are nightmarish to track down. Test plugins in development first. Load one at a time and verify everything works before adding more.

And actually, make sure you're running a current version. Updating fixes bugs and compatibility issues. The jump from 1.39.1 to 1.39.2 alone fixed several edge cases that could cause player crashes.

Backups matter too. This isn't specific to BetterAltay, but I've watched people lose entire worlds because they didn't have one. Set up automated backups before you go live.


Where This Fits (And Alternatives)

BetterAltay is specifically for Bedrock Edition. If you want Java Edition servers, you've got Spigot, Paper, and Purpur. Those are more mature with larger ecosystems, but they're Java-only.

For pure Bedrock, your other option is basically running on official Realms or using ancient software from abandoned projects. BetterAltay is the actively-maintained middle ground that actually works in 2026.

Some people run both - Bedrock server for console players and casual mobile users, Java server for serious players who want mods. If you're only serving Bedrock clients, BetterAltay does the job better than the alternatives.


One More Thing

If you're building a Bedrock community, don't underestimate presentation. While you're running your server, make sure players can show off their skins properly. The Minecraft Skin Creator here on minecraft.how is solid for generating custom skins quickly. And if your server involves any Nether navigation, the Nether Portal Calculator saves everyone time figuring out coordinates.

Benedikt05/BetterAltay - LGPL-3.0, ★117

Frequently Asked Questions

Is BetterAltay free to use?
Yes. BetterAltay is open-source under the LGPL-3.0 license, available on GitHub. You pay nothing for the software itself, only for hosting infrastructure if you use a dedicated server. It's entirely free to download, modify, and run.
What Minecraft Bedrock version does BetterAltay support?
BetterAltay currently supports Minecraft: Bedrock Edition 26.10 (protocol version 944). The project maintains compatibility with recent releases. Always check the GitHub releases page for the latest supported version before upgrading your server.
Can I use Java Edition plugins on BetterAltay?
No. BetterAltay runs Bedrock Edition, not Java Edition, so Java plugins won't work. However, BetterAltay supports API3 plugins written specifically for it. The plugin ecosystem is smaller than Java's, but there are active community developers creating Bedrock plugins.
Do I need technical knowledge to run BetterAltay?
Some. You need to handle PHP binaries, extract files, and potentially troubleshoot setup. It's more technical than clicking a launcher, but less complex than compiling from source. Most server owners with basic command-line experience can get it running. The Discord community helps with specific issues.
How is BetterAltay different from the original Altay?
BetterAltay is an actively maintained fork created after the original Altay project became inactive. It includes performance improvements, bug fixes, new features (like boss bar colors), and continued compatibility with recent Minecraft versions. If you were using old Altay, BetterAltay is the modern replacement.