Advertisement
Flighteur

Client Mag Card Reader

Sep 30th, 2012
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.35 KB | None | 0 0
  1. shell.run("clear")
  2. ServerID = 0 --[[ The unique computer ID of the server for the verifivation of the magnetics cards,
  3.                     change it if this is not your ID for your server. The client is going to try to authenticate the server,
  4.                     if it ends by an error (like it can't reach the server or the ID is not the same of the server, NOTHING GOING TO HAPPEN,
  5.                     even if the password on the card is correct.  ]]--
  6. function getPeripherals()
  7.     local sides= {"left","right","back","front","bottom","top"}
  8.     for i=1,#sides do
  9.         if peripheral.isPresent( sides[i] ) then
  10.             if peripheral.getType( sides[i])  == "mag card reader" then
  11.                 magside = sides[i]
  12.                 mag = peripheral.wrap(magside)
  13.             elseif peripheral.getType( sides[i])  == "monitor" then
  14.                 monside = sides[i]
  15.                 mon = peripheral.wrap(monside)
  16.             elseif peripheral.getType( sides[i])  == "modem" then
  17.                 rednet.open(sides[i])
  18.             end
  19.         end
  20.     end
  21. end
  22. getPeripherals()
  23. function pass()
  24.     while true do
  25.         repeat
  26.             event, data = os.pullEvent()
  27.         until event == "mag_swipe"
  28.         if event == "mag_swipe" then
  29.             rednet.send(0, data)
  30.             senderID, msg, dist = rednet.receive(10)
  31.             if msg == nil or msg == "Error" then
  32.                 print("Error")
  33.             elseif senderID == ServerID and msg == "ok" then
  34.                 rs.setOutput("bottom", true)
  35.                 sleep(1.5)
  36.                 rs.setOutput("bottom", false)
  37.             end
  38.         end
  39.     end
  40. end
  41. pass()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement