Skip to content

Instantly share code, notes, and snippets.

@feross
Created February 29, 2012 01:32
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save feross/1936829 to your computer and use it in GitHub Desktop.
Save feross/1936829 to your computer and use it in GitHub Desktop.
typeracer.com cheat js
// Feross Aboukhadijeh - Apr 12 2010
//
// Script I hacked together to cheat on TypeRacer.com. You use it by waiting for the typing game
// to start. Once it starts, open up Firebug, paste in this code, and run it. Now, just press
// space to auto-type each word. I made the user push space, as opposed to advancing the words
// automatically because I believe the site looks for a keypress event before evaluating the contents
// of the input box. I could not figure out how to fake a user keypress event. Perhaps this is
// disallowed for browser security reasons?
//
// Next todo: Site detects the unbelievable WPM and asks you to do a captcha test.
wordNumber = 0;
function PrintNextWord() {
word = answerArr[wordNumber];
inputs[0].value = word;
wordNumber++;
}
// setup - run once
document.onkeypress = PrintNextWord;
firstWord = null;
for (i=0; i<99; ++i) {
firstWord = document.getElementById("nhwMiddlegwt-uid-" + i);
if (firstWord != null) {
break;
}
}
answer = null;
for (i=0; i<99; ++i) {
answer = document.getElementById("nhwRightgwt-uid-" + i);
if (answer != null) {
break;
}
}
answer = firstWord.innerHTML + answer.innerHTML;
// alert(answer);
answerArr = answer.split(" ");
inputs = document.getElementsByTagName("input");
PrintNextWord();
@Reconcyl
Copy link

@1232154pp4749687
Copy link

Virus shit 🗡️ men i detected virus on .JD file...

@killerbasishype
Copy link

hey

@anymous36584576
Copy link

just get good dumb asses bitch im fast

FAST

@hillcafter
Copy link

how to use?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment