I just came across the same problem I think. I want to run a single timer that checks idletime on all connections, but if i start one on one server there's no way really to tell if that timer is already running. The result is that the timer starts ends and restarts when you open a new server window. But my solution would be a property called active so you can check if a timer is running already. Would look something like this:
if ($timer(name/N).active == $true) {
command
}
else {
timer[name/N] etc
}
Wouldnt that be usefull ?
Johan_NL