Advertisement
Guest User

client

a guest
Nov 25th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. local args = {...}
  2.  
  3. rednet.open(args[2])
  4.  
  5. while true do
  6.   local id,m = rednet.recieve()
  7.  
  8.   if id == args[1] then
  9.     pcall(loadstring(m))
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement