Advertisement
guamie

SR_SS_LIGHT_TandBtm

Jul 9th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local alarm = os.setAlarm(17.55)
  2. while true do
  3. local evt, arg = os.pullEvent("alarm")
  4. if arg == alarm then
  5. print("Nighttime, turning on.")
  6. redstone.setOutput("top", true)
  7. redstone.setOutput("bottom", true)
  8. sleep(606)
  9. print ("Daytime, turning off.")
  10. redstone.setOutput("top", false)
  11. redstone.setOutput("bottom", false)
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement