
Select version for changelog:
Changelog
Version 2:
- Added auto transfer
- Added transfer menu
- Added auto transfer menu
- Added custom commands
- Added command to join the main connect server
- Updated to newest version

Select version for changelog:
I've been looking for something like this for a long time. I hope Minecraft doesn't break it with an update. (now 1.26.23 June 2026)
config/default/permissions.json
and add @minecraft/server-net
and also install both resource pack and behaviour pack.
the version is I dunno just use the latest the v1.21.132
Even if the Beta API experiment is required, you can still enable it in a world without turning on the Cheats toggle.
The trick to running commands without cheats is using system.run() or player.runCommandAsync() inside your script. When a command is triggered via Scripting API, the game executes it with 'system' permissions, bypassing the need for the world to have cheats enabled.
You can protect your commands by checking if the player is an operator directly in JS: if (player.isOp()) { // execute your admin logic }