Last active
August 29, 2015 14:18
-
-
Save markjarzynski/8dbe7f4d2fe62cec94e9 to your computer and use it in GitHub Desktop.
Kuku Kube cheat
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
| // http://www.kuku-kube.com | |
| // http://106.186.25.143/kuku-kube/en-3/ | |
| function cheat () { | |
| var x = document.querySelectorAll("#box span"); | |
| x[0].click(); | |
| for( var i = 1; i < x.length; i++ ) { | |
| if ( x[i].style.backgroundColor != x[0].style.backgroundColor) { | |
| x[i].click(); | |
| } | |
| }; | |
| requestAnimationFrame( cheat ); | |
| } | |
| document.querySelector(".play-btn").click(); | |
| cheat(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment