How to click up to 1000 times per second in cookie clicker
У вашего броузера проблема в совместимости с HTML5
Make sure developer mode is enabled so you can put in the code! Then "command + option + i" in google chrome should open it up, it also works in Safari and some other browsers.
The code:
line 1: function clickCookie(){
Game.clickCookie();
}
line 2:
var x = 120; //x = clicks per second
line 3:
var f = setInterval(clickCookie, 1000/ x);
to stop the clicking:
clearInterval(f);