cobra_tomtrein

Untitled

Nov 2nd, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. local senderId, direct, protocol = rednet.receive()
  2. local senderId, username, protocol = rednet.receive()
  3. local senderId, order, protocol = rednet.receive()
  4.  
  5. file = fs.open(direct.."/"..username..".text", "w")
  6. file.write(order)
  7. file.writeLine()
  8. file.write(username)
  9. file.close()
  10.  
  11. file = fs.open(direct.."/".."list.lst", "a")
  12. file.writeLine(username)
  13. file.close()
Advertisement
Add Comment
Please, Sign In to add comment