10-30-2015, 09:19 PM
Hello and welcome to the forum 
You'll probably want to send a player with BungeeCord to another server. Zee1234 is working on that: https://forum.cuberite.org/showthread.php?tid=2168
You can't "get" a different player due to multithreading issues. Instead we use callbacks:

You'll probably want to send a player with BungeeCord to another server. Zee1234 is working on that: https://forum.cuberite.org/showthread.php?tid=2168
You can't "get" a different player due to multithreading issues. Instead we use callbacks:
1 2 3 4 5 6 7 | function OnPlayerRightClick(a_Player, All other parameters) local TargetOtherPlayer = "TargetPlayer" cRoot:Get():FindAndDoWithPlayer(TargetOtherPlayer, function (a_Player) -- Do stuff with the other player. end ) end |