Server Transfer ( Disscontinued )

Server Transfer ( Disscontinued )

By llildanlid Published 31 Jan 2026 · Updated 6 Jun 2026
4.9k
3.4

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

Downloads

  • Server Transfer v2 (6.8 KB)

Show all downloads (3 older files)
1
Thank you so much, it works perfectly.

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)
1
is it good at al
1
It was working in my realm but now it doesn't work for me at all neither the commands nor the nametag if you could fix this as soon as possible that would be great. Great addon though, thank you!!
1
This only works on servers!!! not a realm or a world a BDS, Bedrock Dedicated Server!!
1
Yes, I have a dedicated server, but my Xbox users can't join so I put the addon on my realm so they can get transferred to my dedicated servers and it worked at first but now its broken. So are you saying you can only transfer to other servers if you can already get on a server, just making sure. If so, that is fine I just want clarification.
1
In the latest update the @minecraft/server-admin has been removed and no longer supporting realms this only works for BDS and just make sure you have got Beta API on too.
1
I think it broke with the new update.
1
it still works, you could just be using this in a normal world.
1
hey there! i have a server but i have no idea how to do this, could you maybe make the explanation better or like make a video about this? Thanks!
1
And also it doesnt work at all on the latest version
1
To install you are going to go into
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
1
How do I set this up explain better pls
1
I've updated the description to show how to use this.
1
This comment has been removed
1
Is there any way to make a npc directly send you to the server I want instead of opening the menu
1
yes, I can create a optimal pack if you would like to transfer to a specific server.
1
pls do this, It would help me greatly
1
That's the pack I have been looking for. Unfortunately the commands dont work without cheats, can you fix this?
1
Beta API enables cheats and I cannot change it.
1
I know a lot of addons that use beta api and still lets you use commands without cheats, I think this is possible. And Beta api can be enabled without having cheats on on a server.
1
This is for Bedrock Dedicated Servers (BDS) and because of the @minecraft/server-admin is on 1.0.0-beta it is going to need beta API. when it comes out of beta I can fix it. shorturl.at/EujG0
1
I understand your point about the @minecraft/server-admin being in 1.0.0-beta, but there’s actually a way to make it work!
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 }