Hello paper people,
When you are using Bungeecord, you can run following code on spigot server to send player to another server.
My question is, if this is possible with Velocity.
Thanks for Answer, Toncek
When you are using Bungeecord, you can run following code on spigot server to send player to another server.
Java:
ByteArrayOutputStream b = new ByteArrayOutputStream();
DataOutputStream out = new DataOutputStream(b);
try {
out.writeUTF("Connect");
out.writeUTF(SERVERNAME);
} catch (IOException eee) {
Bukkit.getLogger().info("You'll never see me!");
}
Bukkit.getPlayer(player).sendPluginMessage(plugin, "BungeeCord", b.toByteArray());
My question is, if this is possible with Velocity.
Thanks for Answer, Toncek