Advertisement
Guest User

craft.lua

a guest
Aug 14th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. while true do
  2.   turtle.turnLeft()
  3.   turtle.select(1)
  4.   local selectNum = {1,2,3,5,7,9,10,11}
  5.   for i,v in ipairs(selectNum) do
  6.     turtle.select(v)
  7.     turtle.suck(3)
  8.   end
  9.   turtle.select(13)
  10.   turtle.craft()
  11.   turtle.turnRight()
  12.   turtle.drop()
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement