Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- rednet.open("right")
- while true do
- local IsThereAblock, block = turtle.inspectUp()
- if IsThereAblock == false then
- rednet.send(27,"stop")
- else
- --rednet.send(27,"placed")
- for i=1,#block do
- print(block[i])
- end
- end
- os.sleep(0.5)
- end
Add Comment
Please, Sign In to add comment