Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- pulse = 2
- m = 24
- c = 8
- function reset()
- for i = 1, m do
- rs.setBundledOutput("back", colors.white)
- sleep(0.2)
- rs.setBundledOutput("back", colors.pink)
- sleep(0.8)
- end
- end
- function plant()
- for i = 1, m do
- rs.setBundledOutput("back", colors.yellow)
- sleep(pulse)
- rs.setBundledOutput("back", colors.black)
- sleep(pulse)
- rs.setBundledOutput("back", colors.orange)
- sleep(pulse)
- end
- end
- function refill()
- for i = 1, c do
- rs.setBundledOutput("back", colors.red)
- sleep(0.3)
- rs.setBundledOutput("back", colors.pink)
- sleep(0.2)
- end
- sleep(20)
- end
- function send()
- for i = 1, c do
- rs.setBundledOutput("back", colors.lime)
- sleep(0.3)
- rs.setBundledOutput("back", colors.pink)
- sleep(0.2)
- end
- end
- reset()
- refill()
- plant()
- reset()
- refill()
- send()
Advertisement
Add Comment
Please, Sign In to add comment