Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //ryandolan123's TheWikiGame hack
- //1. Open up TheWikiGame.com
- //2. Start a game
- //3. Open Inspect Element in your browser
- //4. Open up its console
- //5. To win within seconds, paste this code in and hit return
- //6. Repeat steps 2-5 every time you want to win
- //Enjoy
- function a(){
- wiki.src = "/wiki/Special:Random"; //Let's go to a random page.
- if( Math.random() > 0.92 ) { //If it's a good time...
- wiki.src = "/wiki/" + end_page.innerHTML.replace(" ", "_"); //go to the proper article, indicated inside end_page
- } else { //otherwise repeat the function again after a small delay
- setTimeout(a, 50);
- }
- }
- a();
Add Comment
Please, Sign In to add comment