RyanDolan123

TheWikiGame hack

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