Advertisement
Guest User

AuthServer.lua

a guest
Mar 2nd, 2015
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.00 KB | None | 0 0
  1. local component = require("component")
  2. local term = require("term")
  3. local shell = require("shell")
  4. local gpu = component.gpu
  5. local modem = component.modem
  6. local computer = component.computer
  7. local w, h = gpu.getResolution()
  8. local event = require("event")
  9.  
  10. function clear()
  11.   gpu.fill(0, 0, w, h, " ")
  12.   term.setCursor(1, 1)
  13. end
  14.  
  15. print("Initializing...")
  16. local validSender = false
  17. valid = false
  18. tserved, vserved, dserved = 0
  19.  
  20. print("Loading startup settings...")
  21. count = false
  22.  
  23. print("loading user database...")
  24. users = {"pengo19098"}
  25. passwords = {"6266"}
  26.  
  27. print("Loading core functions...")
  28.  
  29. term.setCursor(1, 1)
  30. print("RLS 1.0 for OpenComputers")
  31. print("There is no user interaction here. please contact your system administrator for assistance regarding the system.")
  32. if count == true then
  33.   print(tserved.." total requests received this session.")
  34.   print(vserved.." requests completed this session.")
  35.   print(dserved.." requests denied this session.")
  36. elseif count == false then
  37.   print("Request statistics have been disabled.")
  38. else
  39.  
  40.   term.setCursor(1, 1)
  41.   print("Error: Counter settings is not boolean and the server can not continue.")
  42.   print("The server program will exit automatically in 10 minutes.")
  43.   print("Please set the variable \"count\" in the source code to either \"true\" or \"false\" WITHOUT QUOTATION MARKS. Doing this with quotation marks will cause the same error.")
  44.   os.sleep(600)
  45.   computer.stop()
  46. end
  47.  
  48. print("Starting up...")
  49.  
  50. while true do
  51.   validSender = false
  52.   local _, _, port, _, message  = event.pull("modem_message")
  53.   for i, v in ipairs(senders) do
  54.     tserved = tserved + 1
  55.     if(v == senderId) then
  56.       validSender = true
  57.       break
  58.     else
  59.       dserved = dserved + 1
  60.      
  61.     end
  62.   end
  63.     if validSender then
  64.       for i, v in ipairs(users) do
  65.         if (message == v) then
  66.       password = passwords[i]
  67.       modem.broadcast(113, password)
  68.       vserved = vserved + 1
  69.      
  70.       break
  71.         else
  72.       modem.broadcast(113, "300")
  73.       dserved = dserved + 1
  74.      
  75.       end
  76.     end
  77.   end
  78. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement