Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- rednet.open("top")
- function launch()
- while true do
- local scrap,message,user = rednet.receive()
- if message == "Holz" then
- print(scrap)
- print(message)
- print(user)
- else
- sleep(1)
- launch()
- end
- end
- end
- launch()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement