zequan

Untitled

Jun 18th, 2014
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. h = 2
  2. m = 49
  3. s = 60
  4.  
  5. function check()
  6.  
  7. if s <= 0 then
  8. m = m -1
  9. s = 60
  10. end
  11.  
  12. if m < 0 then
  13. h = h-1
  14. m = 60
  15. end
  16.  
  17. if h < 0 then
  18. print("Standing By...")
  19. redstone.setOutput("back", true)
  20. sleep(1)
  21. redstone.setOutput("back", false)
  22. sleep(300)
  23. h = 02
  24. m = 49
  25. s = 60
  26. end
  27. end
  28. while true do
  29. term.clear()
  30. term.setCursorPos(1,1)
  31. print(h..":"..m..":"..s)
  32. sleep(1)
  33. s = s-1
  34. check()
  35. end
Add Comment
Please, Sign In to add comment