TIMAS_Bro

Черепахиус

Jan 6th, 2024
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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
Add Comment
Please, Sign In to add comment