Teleport

Challenge

Write a program to move the player to a different place in the world.

Extensions

Example Solution


import mcpi.minecraft as minecraft

world = minecraft.Minecraft.create()

x = 10
y = 11
z = 12

world.player.setPos(x, y, z)