Advertisement
craftyoyo

httpdoor

Jun 17th, 2014
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local state
  2.  
  3.  
  4. while 1 do
  5. local door_handle = http.get("http://mc.deathchunk.fr/pc/door.php")
  6. if not door_handle then
  7.  
  8. else
  9. state = door_handle.readAll()
  10. if state == "0" then
  11. rs.setOutput("back",false)
  12.  
  13. else
  14. rs.setOutput("back",true)
  15.  
  16. end
  17. end
  18. os.sleep(1)
  19. end
  20.  
  21. --http://pastebin.com/UQxjA9b1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement