Skip to content

Instantly share code, notes, and snippets.

@crisu83
Created May 5, 2014 11:03
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crisu83/5cb1293f54ac079b1389 to your computer and use it in GitHub Desktop.
Save crisu83/5cb1293f54ac079b1389 to your computer and use it in GitHub Desktop.
Small script that will help you play "Drowning in Problems" by Notch http://game.notch.net/drowning/#
/*
Open up the developer console in your browser, paste the script below, press enter and enjoy!
*/
var anchors, i;
setInterval(function() {
anchors = document.getElementsByTagName('a');
for (i = 0; i < anchors.length; i++) {
anchors[i].click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment