Advertisement
MoronPipllyd

Untitled

Jun 6th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. rednet.open("top")
  2.  
  3. while true do
  4. local c, signal = rednet.receive()
  5. if signal == "on" then
  6. rs.setOutput("back", true)
  7. end
  8.  
  9. if signal == "off" then
  10. rs.setOutput("back", false)
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement