Advertisement
Guest User

test

a guest
Oct 30th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.60 KB | None | 0 0
  1. os.loadAPI("disk/APIS/randcrypt")
  2. rednet.open("top")
  3.  
  4. local message = "prep ahh11 test 1"
  5. --local words = {}
  6. --for word in string.gmatch(message,"%w+") do
  7. --  table.insert(words,word)
  8. --end
  9. --print(textutils.serialise(words))
  10.  
  11. rednet.broadcast(randcrypt.encrypt(message, 6786), "MeredithBank")
  12. print("Sent")
  13. local data = {os.pullEvent("rednet_message")}
  14. if data[4] == "MeredithBank" then
  15.   print("received")
  16.   data[3] = randcrypt.decrypt(data[3], 6786)
  17.   local data = {}
  18.   for word in string.gmatch(message,"%w+") do
  19.     table.insert(data,word)
  20.   end
  21.   print(textutils.serialise(data))
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement