Quickbar script: Freeze timers
by Nemesis,
posted
Scripts / General
Apparently not many people are aware of this, but if you want to freeze all the timers on one tab (for example to stop the page from reloading when troops return home in the rally point) add the following script:
Code:javascript:function tick() {};Alternatively, if you wish to be able to freeze timers and then turn them back on again (they will still be accurate):
Freeze timers:
Code:javascript:if(timers.length > 0) { tmptimers=timers;timers=[];} void(0);Restart timers:
Code:javascript:if(typeof tmptimers != 'undefined') {timers=tmptimers;}void(0);
100% legal
0
0