Posted 12 July 2015 - 09:50 PM
Recently, i have written a turtle program to compress the cobblestone (cuz why not…) with extra utilities crafting recipes. I realized that the crafting was pretty slow. So, i wrote another very basic program to check what was wrong.
Here is the script of that basic program:
And here's the output:
1. Why is transfering items so slow?
2. Is there any way to make it faster?
Here is the script of that basic program:
turtle.select(1)
for i = 2,16 do
startTime = os.clock()
turtle.transferTo(i,4)
print(os.clock()-time.."s")
end
And here's the output:
0.05s
0.4s
0.4s
0.4s
etc.
1. Why is transfering items so slow?
2. Is there any way to make it faster?