Advertisement
Shuudoushi

Untitled

Aug 14th, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. local ignore = false
  2.  
  3. while true do
  4. local r, q = os.pullEvent()
  5. local s = "back"
  6. local q = "front"
  7.  
  8. if r == "redstone" and not ignore then
  9. ignore = true
  10. rs.setBundledOutput(s, 0)
  11. sleep(2.5)
  12. rs.setBundledOutput(s, colors.white)
  13. ignore = false
  14. end
  15.  
  16. sleep(0.01)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement