Advertisement
Guest User

quarry

a guest
Apr 21st, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. turtle.select(1)
  2. turtle.placeDown()
  3. turtle.select(2)
  4. turtle.up()
  5. turtle.placeDown()
  6. for n=1,4 do
  7.   turtle.select(1)
  8.   turtle.placeDown()
  9.   turtle.up()
  10.   turtle.select(2)
  11.   turtle.placeDown()
  12.   turtle.forward()
  13.   turtle.down()
  14.   for i=1,40 do
  15.     turtle.forward()
  16.     end
  17.   turtle.turnRight()
  18.   end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement