Skip to content

Instantly share code, notes, and snippets.

@jgaye
Created June 19, 2018 19:23
Show Gist options
  • Save jgaye/0d5107d76160aa4ee59ac10e83d83861 to your computer and use it in GitHub Desktop.
Save jgaye/0d5107d76160aa4ee59ac10e83d83861 to your computer and use it in GitHub Desktop.
Auto clicker for cookie clicker
/* For Cookie Clicker v. 2.0106
coded on Chrome 67
Click the big cookie automatically
Your mouse cursor needs to be in the cookie zone
Stop by typing in the console
> clearInterval(clickInterval);
*/
// Time between two clicks in ms
var clickDelay = 100;
clickInterval = setInterval(function(){
Game.ClickCookie();
}, clickDelay);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment