Guest User

Untitled

a guest
Jul 27th, 2021
631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. @name
  2. @inputs Start
  3. @outputs Time Sec ButtonPush
  4. @persist
  5. @trigger
  6. Time = 10
  7. if(Start == 1){
  8. timer("Time",1000)
  9. if(clk("Time")){
  10. while(Sec < 11){
  11. Time = Time - Sec
  12. Sec = Sec + 1
  13. if(Sec == 10){
  14. ButtonPush = 0
  15. Start = 0
  16. stoptimer("Timer")
  17. Time = 10
  18. }
  19. }
  20. }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment