var pickAnimation = 23;1var deltaTime = 4;23var seconds = 0;4var miliseconds = 0;5678function stdizeCount(count) {9if(count > 9999) {10throw "THIS FUNCTION ONLY ACCEPTS NOT MORE THAN 9999";11}1213var lnghC = count.toString().length;1415var toReturn = "";1617for(i = 0; i < (4 - lnghC); i++) {18toReturn += '0';19}20toReturn += count;2122return toReturn;23}2425//Getting the tick of time transforming miliseconds to seconds26function keepTime()27{28if(miliseconds >= 1000)29{30seconds += 1;31miliseconds = 0;32stdizeCount(seconds);33}34else35miliseconds += 4;36}373839