Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- tutelName = 'computercraft:turtle_normal'
- function move(count)
- for i=1, count do
- for i=1, 2 do
- success, bData = turtle.inspect()
- if bData.name != tutelName then
- break
- end
- end
- while turtle.detect() do
- if turtle.dig() then
- sleep(0.5)
- end
- end
- turtle.forward()
- end
- end
- move(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement