Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- stack of iron blocks in slot one and it should wait until the Shadowpulse Goo converts it, pick it up and repeat
- target="justdirethings:raw_ferricore_ore"
- local function checkblock()
- local has_block, data = turtle.inspect()
- if has_block then
- if data.name == target then
- turtle.dig()
- turtle.place()
- else
- print("Still=",data.name)
- end
- end
- end
- turtle.place()
- for x=1,63 do
- checkblock()
- sleep(2)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement