Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @name tecza
  2. @inputs
  3. @outputs
  4. @persist A B C
  5. if(first()) {
  6. A=random(0,100)
  7. B=random(0,100)
  8. C=random(0,100)
  9. }
  10. O=owner()
  11. timer("timer", 20)
  12. if(clk("timer")){
  13. A=A+random(0,21)
  14. B=B+random(0,30)
  15. C=C+random(0,17)
  16. O:setColor(vec(A,B,C))
  17. timer("timer", 20)
  18. }
  19. if(A>190){
  20. A=random(0,190)
  21. }
  22. if(B>190){
  23. B=random(0,190)
  24. }
  25. if(C>190){
  26. C=random(0,190)
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement