Last active
April 3, 2016 16:31
-
-
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.
This file contains hidden or 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
/* 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