Advertisement
rhn

Laser warning lights

rhn
Jan 2nd, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. while true do
  2. if redstone.getInput("top") == false then
  3. redstone.setOutput("bottom", false)
  4. while redstone.getInput("top") == false do
  5. redstone.setOutput("left", true)
  6. redstone.setOutput("right", false)
  7. sleep(1)
  8. redstone.setOutput("left", false)
  9. redstone.setOutput("right", true)
  10. sleep(1)
  11. end
  12. else
  13. redstone.setOutput("left", false)
  14. redstone.setOutput("right", false)
  15. redstone.setOutput("bottom", true)
  16. sleep(1)
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement