Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("disk/APIS/randcrypt")
- rednet.open("top")
- local message = "prep ahh11 test 1"
- --local words = {}
- --for word in string.gmatch(message,"%w+") do
- -- table.insert(words,word)
- --end
- --print(textutils.serialise(words))
- rednet.broadcast(randcrypt.encrypt(message, 6786), "MeredithBank")
- print("Sent")
- local data = {os.pullEvent("rednet_message")}
- if data[4] == "MeredithBank" then
- print("received")
- data[3] = randcrypt.decrypt(data[3], 6786)
- local data = {}
- for word in string.gmatch(message,"%w+") do
- table.insert(data,word)
- end
- print(textutils.serialise(data))
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement