Advertisement
M4x3n

Mining endless

Apr 29th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. while( true )
  2. do
  3.     turtle.dig()
  4.     turtle.forward()
  5.     turtle.digUp()
  6.     turtle.up()
  7.     turtle.turnRight()
  8.     turtle.dig()
  9.     turtle.forward()
  10.     turtle.digDown()
  11.     turtle.down()
  12.     turtle.turnLeft()
  13.     turtle.turnLeft()
  14.     turtle.forward()
  15.     turtle.turnRight()
  16.     turtle.dig()
  17.     turtle.forward()
  18.     turtle.digUp()
  19.     turtle.up()
  20.     turtle.turnRight()
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement