Maxstripe

Drone Control Client (OC)

Jun 28th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local component = require("component")
  2. local event = require("event")
  3. local modem = component.modem
  4. modem.open(2412)
  5. modem.broadcast(2412, "drone=component.proxy(component.list('drone')())")
  6. while true do
  7. local cmd=io.read()
  8. if not cmd then return end
  9. modem.broadcast(2412, cmd)
  10. print(select(6, event.pull(5, "modem_message")))
  11. end
Add Comment
Please, Sign In to add comment