Last active
October 3, 2017 04:54
-
-
Save fschwiet/ff088954086c402ae7a42ae3a8d3d7c2 to your computer and use it in GitHub Desktop.
autoclicker for online challenge 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
// Autoclicker for Cookie Clicker, Cookie Clicker is at http://orteil.dashnet.org/cookieclicker/ | |
// Run it in the debug console | |
var clicky = function() { ($(".shimmer") || $("#bigCookie")).click(); setTimeout(clicky, 30); }; | |
clicky(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment