Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local args = { ... }
- if #args >= 1 then
- local slot = tonumber(args[1])
- if slot and slot >= 1 and slot <= 16 then
- turtle.select(slot)
- end
- end
- while true do
- if not turtle.place() then
- break
- end
- if not turtle.dig() then
- break
- end
- end
Add Comment
Please, Sign In to add comment