Advertisement
k_goos

RedstonePulse

May 13th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. local side = "top"
  2.  
  3. print("starting...")
  4.  
  5. while true do
  6. redstone.setOutput(side, true)
  7. sleep(1)
  8. redstone.setOutput(side, false)
  9. print("pulse")
  10. sleep(6)
  11. end
  12.  
  13. print("end...")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement