SythsGod

Untitled

Oct 1st, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. local black = false
  2.  
  3. function ending()
  4.   turtle.turnRight()
  5.   turtle.forward()
  6.   turtle.turnRight()
  7. end
  8.  
  9. for i = 0, 6 do
  10.   if black then
  11.     turtle.select(1)
  12.   else
  13.     turtle.select(2)
  14.   end
  15.  
  16.   for i = 0, 2 do
  17.     turtle.placeDown()
  18.     turtle.forward()
  19.   end
  20.  
  21.   black = not black
  22. end
Add Comment
Please, Sign In to add comment