Posted 06 September 2013 - 07:45 PM
I got this really simple piece of code but it isnt doing what i want it to do >.<
it gets items, then places above how many items are put in its inventory
it gets items, then places above how many items are put in its inventory
while true do
turtle.select(1)
num = turtle.getItemCount(1)
for i = 1, num do
turtle.placeUp()
end
end