This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
var timer = false;
var tick = 0;
//After you have made your hook that will start the timer...
function modTick(){
if(timer==true){
tick++; //Or tick = tick + 1;
}
if(tick==whatever tick you want&&timer==true){
timer = false;
tick = 0; //Or just continue the timer.
}
}