UnlimitedSlots is a lightweight AquaRelay plugin that dynamically increases the visible player slots in Minecraft server query responses.
Instead of showing the backend server's fixed slot limit, the proxy displays:
Current Online Players + Configured Extra Slots
Perfect for large networks that want scalable server list presentation without changing real backend limits.
✔ Increases displayed max slots
✔ Updates automatically as players join/leave
✔ Works at proxy level (AquaRelay)
✔ No backend server edits required
✔ Zero performance impact
UnlimitedSlots listens to:
aquarelay\event\default\server\QueryRegenerateEvent
Core logic:
$event->setMaxPlayers(
$event->getCurrentPlayers() +
Main::getInstance()->getConfig()->get("extra-slots", 0)
);Shown Max Slots = Online Players + Extra Slots (config)
📄 config.yml
# Extra slots to show in query
extra-slots: 100| 👥 Online | ➕ Extra | 🖥 Shown Max |
|---|---|---|
| 45 | 100 | 145 |
| 120 | 100 | 220 |
| 3 | 100 | 103 |
- 🔹 AquaRelay Proxy
- 🔹 PHP 8+
- 🔹 AquaRelay API supporting
QueryRegenerateEvent
| Feature | Status |
|---|---|
| Increase real server slots | ❌ |
| Bypass full server kick | ❌ |
| Change gameplay capacity | ❌ |
| Affect backend performance | ❌ |
👉 This plugin is visual only (query response).
✨ Network hubs
✨ Lobby servers
✨ Large public servers
✨ Marketing presentation
✨ Avoid “Server Full” appearance
Made for AquaRelay Minecraft Bedrock proxy networks.
UnlimitedSlots lets your server look scalable while keeping backend control safe and stable.
🎯 Clean. Simple. Effective.