How to teleport to an other world? I know how to teleport to the same world with: PHP: $x = 232; $y = 4; $z = 270; $player->teleport(new Vector3($x, $y, $z)); But I want to teleport to an other world. Anyone who can help me?
https://github.com/pmmp/PocketMine-MP/blob/master/src/pocketmine/Player.php#L3460-L3497 You can use a Location, a position, or a vector for teleports. Each will teleport the player to different coordinates, but if it is a position or location, the level will also be changed.