Transferring Help

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

cdoxy

Member
Aug 9, 2024
43
2
8
I'm trying to create a skript to transfer players to a different server when they type a command, but it doesn't work.

When the server i want to transfer them to is offline it works and just sends you to the server hosting hub instead of the server, but when the server i want to transfer them to is online it doesn't transfer them.

here is the code.

Code:
command /ziyumc:
    trigger:
        play sound "block.note_block.bit"
        send "&2ᴢɪʏᴜᴍᴄ &8| &7Transferring you to &2ᴢɪʏᴜᴍᴄ&7..."
        wait 1 second
        broadcast "&a%player% &8ᴡᴀs sᴇɴᴛ ᴛᴏ &2ᴢɪʏᴜᴍᴄ!"
        transfer player to server "ziyumc.minehut.gg"

thanks!
 
I'm trying to create a skript to transfer players to a different server when they type a command, but it doesn't work.

When the server i want to transfer them to is offline it works and just sends you to the server hosting hub instead of the server, but when the server i want to transfer them to is online it doesn't transfer them.

here is the code.

Code:
command /ziyumc:
    trigger:
        play sound "block.note_block.bit"
        send "&2ᴢɪʏᴜᴍᴄ &8| &7Transferring you to &2ᴢɪʏᴜᴍᴄ&7..."
        wait 1 second
        broadcast "&a%player% &8ᴡᴀs sᴇɴᴛ ᴛᴏ &2ᴢɪʏᴜᴍᴄ!"
        transfer player to server "ziyumc.minehut.gg"

thanks!
Do you have accepts-transfers enabled on your other server (In server.properties)?
 
Do you have accepts-transfers enabled on your other server (In server.properties)?
i enabled accepts-transfers in both the server that i want to be sent to and the one sending and it still doesn't work. there's no errors in the console and it executes the transfer it just doesn't send them. any help?
 
i enabled accepts-transfers in both the server that i want to be sent to and the one sending and it still doesn't work. there's no errors in the console and it executes the transfer it just doesn't send them. any help?
i enabled accepts-transfers in both the server that i want to be sent to and the one sending and it still doesn't work. there's no errors in the console and it executes the transfer it just doesn't send them. any help?
Only other issue I could see as to why this wouldn’t work is that the other server’s version (Or the one with the script) is not 1.20.5+. If it is, than the issue is likely a different technical problem with Skript itself maybe.
 
Only other issue I could see as to why this wouldn’t work is that the other server’s version (Or the one with the script) is not 1.20.5+. If it is, than the issue is likely a different technical problem with Skript itself maybe.
the server's version is 1.21.1, and the main is 1.21.4. any other ideas?