Last active
December 23, 2015 06:29
-
-
Save XTalandier/6594554 to your computer and use it in GitHub Desktop.
Cookie Clicker
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
setInterval(function(){document.getElementById('bigCookie').click()}, 1); | |
Game.Earn(99999999999); | |
var intervals = []; | |
for(var i = 0 ; i < 1000; i++){ | |
intervals.push(setInterval(function(){document.getElementById('bigCookie').click()}, 1)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment