Advertisement
osmarks

DoorBroadcast

Jul 29th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. local m = peripheral.find "modem"
  2.  
  3. local f = fs.open("user.txt", "r")
  4. local user = f.readAll()
  5. f.close()
  6.  
  7. while true do
  8. m.transmit(666, os.getComputerID(), user)
  9. sleep(0.5)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement