How to find out if a timer is paused or not?
When you do /timername -p the timer seems to keep running until the .secs property becomes zero, and then stops, without triggering the command.
If it would immediately set the .secs to zero, I could use if ($timer(name).secs == 0) { timer is paused here } to know it.
So there is something missing here, and having to use a variable for each timer to store the fact that timer was paused is surely a poormans-solution.