Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- use as the eeprom for the drone for the openComputers mod
- m = component.proxy(component.list("modem")())
- m.open(2412)
- --d = component.proxy(component.list("drone")())
- while true do
- local evt,_,_,_,_,cmd = computer.pullSignal()
- if evt == "modem_message" then
- load(cmd)()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement