Advertisement
guitarplayer616

bios

Nov 24th, 2019
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. -- use as the eeprom for the drone for the openComputers mod
  2. m = component.proxy(component.list("modem")())
  3. m.open(2412)
  4. --d = component.proxy(component.list("drone")())
  5.  
  6.  
  7. while true do  
  8.   local evt,_,_,_,_,cmd = computer.pullSignal()
  9.   if evt == "modem_message" then
  10.     load(cmd)()
  11.   end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement