Advertisement
UNOBTANIUM

dc

Apr 7th, 2013
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. local signal = false
  2. local time = 4
  3. local side = "front"
  4. rednet.open("back")
  5.  
  6. term.clear()
  7. term.setCursorPos(1,1)
  8. print("Waiting for a redstone signal on the " .. side)
  9. print("Door is closed!")
  10.  
  11. function run()
  12.  signal = redstone.getInput(side)
  13.  if signal then
  14.   print("Opening the door!")
  15.   rednet.broadcast("open")
  16.   sleep(time)
  17.   print("Closing the door!")
  18.   rednet.broadcast("close")
  19.   sleep(1)
  20.  end
  21.  sleep(0.5)
  22. end
  23.  
  24.  
  25. while true do
  26.  run()
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement