Advertisement
Guest User

Untitled

a guest
Jul 25th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. local component = require("component")
  2. local event = require("event")
  3. local m = component.modem
  4.  
  5. m.open(1111)
  6. print("Opened: " .. tostring(m.isOpen(1111)))
  7.  
  8. local function split(str,sep)
  9.     local array = {}
  10.     local reg = string.format("([^%s]+)",sep)
  11.     for mem in string.gmatch(str,reg) do
  12.         table.insert(array, mem)
  13.     end
  14.     return array
  15. end
  16.  
  17. function math()
  18.   print(5+5)
  19. end
  20.  
  21. functions = {}
  22. functions["math"] = math
  23.  
  24. local _, _, from, port, _, message = event.pull("modem_message")
  25.  
  26. if tostring(message) == nil then
  27.   return
  28. else
  29.   func = split(tostring(message), " ")[2]
  30.   functions[func]()
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement