owenh28

Untitled

Jan 12th, 2022
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. local modem = peripheral.find("modem", rednet.open)
  2. if rednet.isOpen(modem) then
  3. print("Modem is innitiated")
  4. else
  5. printError("Problem or something")
  6. end
  7.  
  8. rednet.host("main", "log")
  9. rednet.broadcast("I'm watching you...")
  10.  
  11. while true do
  12. local get = rednet.receive("main")
  13. print(get)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment