Posted 26 March 2014 - 11:10 PM
Hi
How could I get my turtle detecting and digging while wait a modem message?
How could I get my turtle detecting and digging while wait a modem message?
parallel.waitForAny(
function()
while true do
rednet.receive()
end
end,
function()
while true do
turtle.detect()
end
end
)
You get the idea.