Advertisement
systox

RN

Mar 26th, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. rednet.open("top")
  2.  
  3. function launch()
  4. while true do
  5. local scrap,message,user = rednet.receive()
  6. if message == "Holz" then
  7. print(scrap)
  8. print(message)
  9. print(user)
  10. else
  11. sleep(1)
  12. launch()
  13. end
  14. end
  15. end
  16.  
  17. launch()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement