Advertisement
Guest User

c

a guest
May 28th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. function craft()
  2.   turtle.select(1)
  3.   turtle.craft(64)
  4. end
  5.  
  6. function drop()
  7.   turtle.select(2)
  8.   turtle.dropUp(64)
  9.   turtle.select(1)
  10. end
  11.  
  12. function start()
  13.   data = turtle.getItemDetail()
  14.   if data then
  15.     if data.name == "minecraft:log" then
  16.       turtle.craft()
  17.       drop()
  18.     elseif data.name == "minecraft:planks" then
  19.       turtle.dropUp(64)
  20.     end
  21.   else
  22.     sleep(1)
  23.   end
  24. end
  25. start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement