Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local hall = {}
- function move_times_back(x)
- for i = 1, x do
- turtle.back()
- end
- end
- function move_times_forward(x)
- for i = 1, x do
- turtle.forward()
- end
- end
- function up_times_forward(x)
- for i = 1, x do
- turtle.up()
- end
- end
- local hall = {}
- hall.x = 27
- hall.z = 16
- hall.y = 42 --hall height
- hall.e = 3 --hall space between the platforms
- function new_plattform()
- for x = 1, hall.x
- for i = 1, hall.z do
- turtle.refuel()
- turtle.forward()
- turtle.placeDown()
- end
- turtle.turnLeft()
- turtle.forward()
- turtle.turnRight()
- for a = 1, hall.z do
- turtle.back()
- end
- end
- end
- new_plattform()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement