Advertisement
Florian86

craft_paper

Apr 1st, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. while true do
  2.     turtle.select(2)
  3.     turtle.suck()
  4.     turtle.select(5)
  5.     turtle.suck()
  6.     turtle.select(7)
  7.     turtle.suck()
  8.     turtle.select(10)
  9.     turtle.suck()
  10.     turtle.select(8)
  11.     turtle.craft()
  12.     turtle.turnLeft()
  13.     turtle.drop()
  14.     turtle.turnRight()
  15.     turtle.select(6)
  16.     turtle.placeDown()
  17.  
  18.     for i=1,63 do
  19.         turtle.select(8)
  20.         turtle.craft()
  21.         turtle.turnLeft()
  22.         turtle.drop()
  23.         turtle.turnRight()
  24.         turtle.select(6)
  25.         turtle.placeDown()
  26.     end
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement