View difference between Paste ID: WFcdiRgJ and Yq493BtT
SHOW: | | - or go back to the newest paste.
1
function craft()
2
   turtle.craft(1)
3
end
4
5
function drop()
6
turtle.dropUp([1]) 
7
end
8
9
while (true) do
10
  craft()
11
drop()
12
13
14
end