BioPrince

craft

Jun 1st, 2015
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --for crafting single items. i.e. botania flowers into petals
  2. while true do
  3. while redstone.getInput("right") do
  4.   sleep(1)
  5.   turtle.suck(16)
  6.   turtle.craft(16)
  7.   turtle.turnRight()
  8.   turtle.turnRight()
  9.     for i=1,16 do
  10.       turtle.select(i)
  11.       turtle.drop()
  12.     end
  13.   turtle.select(1)
  14.   turtle.turnRight()
  15.   turtle.turnRight()
  16.   sleep(1)
  17. end
  18. sleep(30)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment