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?