Home
联机问答
(编程)把玩家传送到另一个位置
3104026189
如题,要bukkit方法
800805
/tp [玩家名] [需要传送到的坐标]
嘉晚饭,赢
Player player = Bukkit.getPlayer("Test");
Location location = new Location(Bukkit.getWorld("World"),1,64,1);
player.teleport(location);
复制代码