Skip to content

Instantly share code, notes, and snippets.

@wiesson
Last active August 29, 2015 14:22
Show Gist options
  • Save wiesson/d21b0b4f6b96d181356f to your computer and use it in GitHub Desktop.
Save wiesson/d21b0b4f6b96d181356f to your computer and use it in GitHub Desktop.
Game.goldenCookie.spawn();
var clickNormalCookie = setInterval(function(){ $('#bigCookie').click() }, 1);
var clickGoldenCookie = setInterval(function(){ Game.goldenCookie.time = Game.goldenCookie.maxTime; Game.goldenCookie.click(); }, 5);
// clear setInterval
clearInterval(clickNormalCookie);
clearInterval(clickGoldenCookie);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment