Advertisement
RyuuzakiJulio

Anal Scan

Feb 18th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.43 KB | None | 0 0
  1. os.loadAPI("ocs/apis/sensor")
  2. prox = sensor.wrap("top")
  3.  
  4. ch = peripheral.wrap("chat_box_2")
  5. ch.setDistance(5)
  6. ch.setName("Red Queen")
  7.  
  8.  
  9. function welcomeMessage()
  10.  ch.say("Welcome")
  11.  ch.say("This facility handles DNA Mutations")
  12.  ch.say("We require an ANAL SCAN to grant access")
  13. end
  14.  
  15.  
  16.  
  17.  
  18. -- TO MAKE SURE ONLY 1 PLAYER IS ON
  19. while true do
  20.  term.clear()
  21.  term.setCursorPos(1,1)
  22.  
  23.  p = {}
  24.  local signal = false
  25.  
  26.  local tar = prox.getTargets()
  27.  
  28.  for name, basicInfo in pairs(tar) do
  29.  
  30.     if  (basicInfo.Name == "Player") then
  31.         --ch.say("X:"..basicInfo.Position.X)
  32.         --ch.say("Y:"..basicInfo.Position.Y)
  33.         --ch.say("Z:"..basicInfo.Position.Z)
  34.  
  35.         if (basicInfo.Position.X >= 0 and basicInfo.Position.X <= 3) and
  36.            (basicInfo.Position.Y >= 3 and basicInfo.Position.Y <= 5) and
  37.            (basicInfo.Position.Z >= -3 and basicInfo.Position.Z <= -1) then
  38.             isOn = false
  39.             for k, v in pairs(p) do
  40.             if v == basicInfo.Name then
  41.                 --print("Player is in List")
  42.                 isOn = true
  43.                 break
  44.             end
  45.         end
  46.         if not isOn then
  47.             --print("Insert New Player")
  48.             table.insert(p, basicInfo.Username)
  49.             welcomeMessage()
  50.         end
  51.     end
  52.  end
  53.  
  54. end
  55.  
  56.  if #p > 1 then
  57.   ch.say("ONLY ONE PLAYER ALLOWED IN SCAN AREA")
  58.   print("Players in Scan Area: "..#p)
  59.  elseif #p == 1 then
  60.   ch.say("Identified player: "..p[1])
  61.   print("Players in Scan Area: "..#p)
  62.  end
  63.  
  64.  print(textutils.serialize(p))
  65.  sleep(1)
  66. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement