Advertisement
asteroidsteam

Server_Startup

Sep 6th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. rednet.open("top")
  2. while true do
  3.   local id,msg = rednet.receive()
  4.   print("ID:"..id.." REQUEST-CODE:"..msg)
  5.   if (msg == "/20%80") then
  6.     local tempFile = fs.open("page","r")
  7.     local fileO = tempFile.readAll()
  8.     tempFile.close()
  9.     rednet.send(id,fileO)
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement