Advertisement
Guest User

startup

a guest
Aug 1st, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. i = 0
  2.   repeat
  3.     turtle.select(2)
  4.     turtle.refuel(1)
  5.     turtle.select(1)
  6.     turtle.dig()
  7.     turtle.place()
  8.     turtle.turnRight()
  9.     turtle.forward()
  10.     turtle.turnLeft()
  11.     i = i + 1
  12.   until i == 4
  13.   sleep(120)
  14.   i = 0
  15.   repeat
  16.     turtle.turnLeft()
  17.     turtle.forward()
  18.     turtle.turnRight()
  19.     turtle.dig()
  20.     turtle.place()
  21.     i = i + 1
  22.   until i == 4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement