View difference between Paste ID: SbrLXenx and vdCrv4xS
SHOW: | | - or go back to the newest paste.
1
rednet.open("right")
2
while true do
3
  local IsThereAblock, block = turtle.inspectUp()
4
  if IsThereAblock == false then 
5
    rednet.send(27,"stop")
6
  else
7
    --rednet.send(27,"placed")
8
    for i=1,#block do
9
      print(block[i])
10
    end
11
  end
12
  os.sleep(0.5)
13
end