Skip to content

Instantly share code, notes, and snippets.

@rezoner
Last active April 3, 2016 16:31
Show Gist options
  • Save rezoner/e6b99f7288a3f9808e2fec06e950eb24 to your computer and use it in GitHub Desktop.
Save rezoner/e6b99f7288a3f9808e2fec06e950eb24 to your computer and use it in GitHub Desktop.
A script that will click GROW button every 5 seconds, so u can go like poop or something.
/* Paste that into console (F12) and hit enter */
window.clicker = setInterval(function() {
$("button[value=INCREASE]").click()
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment