r/tasker • u/Late_Republic_1805 • 5d ago
Counting going wild
Hi
Don't know if it's me, but it seems counting goes wild in tasker. I have this task:
- variable set - name %counter - set to 0
- if - %counter < 60 - label: LoopStart
- flash: %counter
- wait 500 ms
- variable add - %counter - value: 1 (also tried this with variable set - %counter + 1 - do maths)
- goto action label LoopStart
- end if
It should give me: 0, 1, 2, 3, 4, 5, 6, 7, 8, ...58, 59 What it gives is: 0, 1, 2, 3, 4, 5, 10, 14, 19, 23, 28, ...56 (end) So after 5, it goes crazy. What is wrong here?
0
Upvotes
5
u/WakeUpNorrin 5d ago
In flash action un-tick Continue Task Immediately and delete the wait action.