Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. while true do
  2.  
  3. akw_on = "10"
  4. akw_off = "30"
  5. akw_n = 5
  6.  
  7. akw_run = "(akw_on+akw_off)/akw_n"
  8.  
  9. brc = "back" -- bundle redstone cable
  10.  
  11. c1 = blue
  12. c2 = green
  13. c3 = red
  14. c4 = yellow
  15. c5 = white
  16. c6 = grey
  17.  
  18. rs.setBundledOutput(brc, colors.combine(colors.c1,colors.c2))
  19. sleep(akw_run)
  20. rs.setBundledOutput(brc, colors.combine(colors.c2,colors.c3))
  21. sleep(akw_run)
  22. rs.setBundledOutput(brc, colors.combine(colors.c3,colors.c4))
  23. sleep(akw_run)
  24. rs.setBundledOutput(brc, colors.combine(colors.c4,colors.c5))
  25. sleep(akw_run)
  26. rs.setBundledOutput(brc, colors.combine(colors.c5,colors.c1))
  27. sleep(akw_run)
  28.  
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement