This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var time = 60; var clock = 300; function TimeHack(){ | |
setInterval(function Applytime() { | |
document.getElementsByClassName('timerLabel whiteTextWithShadow font-60 ng-binding')["0"].innerText = time; document.getElementsByClassName('timerLabel whiteTextWithShadow font-60 ng-binding')["0"].innerHtml = time; | |
document.getElementsByClassName('clockHand').rotate = clock; | |
}, 1);}; function TimeHackm() { | |
setInterval(function Addtime() { | |
time = time + 1; | |
clock = clock + 6; | |
}, 1000);} | |
var score = 1; |