Advertisement
snirkimmington

Proximity Door (OpenPeripherals)

Feb 28th, 2014
1,756
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.48 KB | None | 0 0
  1. -- Proximity door by Immington Industries (snirkimmington)
  2. -- Requires OpenPeripheral Sensor block attached to computer.
  3. -- For a door that opens when you sneek, see http://pastebin.com/Qwhb3c2e
  4. -- R.S. signal will output when you approach the door.
  5. -- Adjust the peripheral wrapping and min/max values.
  6. -- Can be set to enable/disable R.S. on detection.
  7. local sensor = peripheral.wrap('left') -- where the sensor is
  8. local output = 'right' -- Where to output the signal
  9. local initial = true -- What to output when no one's around
  10. -- How close you need to be to the sensor in order to use it.
  11. local minX = -2 local maxX = 2
  12. local minY = 0  local maxY = 2
  13. local minZ = -2 local maxZ = 2
  14. -- Initial output
  15. redstone.setOutput(output, initial)
  16. while true do
  17.     players = sensor.getPlayerNames()
  18.     -- Don't do checks if there are no players.
  19.     if #players == 0 then
  20.         redstone.setOutput(output, initial)
  21.         sleep(0.7)
  22.     else -- There are players
  23.         for _, name in pairs(players) do
  24.             -- You can replace this with "if name == 'yourname'" to check for you
  25.             -- For example, if name == 'snirkimmington' on my door.
  26.             if name ~= '' then
  27.                 info = sensor.getPlayerData(name)
  28.                 pos = info.position
  29.                
  30.                 if pos.x >= minX and pos.x <= maxX
  31.                 and pos.y >= minY and pos.y <= maxY
  32.                 and pos.z >= minZ and pos.z <= maxZ then
  33.                     redstone.setOutput(output, not initial)
  34.                     break
  35.                 end
  36.             end
  37.         end
  38.         -- There are players around, we need to be more responsive
  39.         sleep(0.5)
  40.     end
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement