This content originally appeared on DEV Community and was authored by Kaixin
var counter = -1;
var firstWord = document.getElementsByClassName("inputPanel")[0].querySelectorAll("span")[0].innerHTML + document.getElementsByClassName("inputPanel")[0].querySelectorAll("span")[1].innerHTML,
restOfText = document.getElementsByClassName("inputPanel")[0].querySelectorAll("span")[2].innerHTML;
var fullText = firstWord.concat(restOfText);
var inputBox = document.getElementsByClassName('txtInput');
(function getString() {
setTimeout(function() {
counter++;
inputBox[0].value += fullText[counter];
if(counter != fullText.length) {
getString();
}
//adjust the 100 milliseconds for a faster wpm & be undetected by their new system.
}, 100);
})()
Copy the code above ^^ then go to TypeRacer Enter a Race, on your keyboard press ctrl + shift + i to open the console When the game starts(It says GO!), paste the cheat code you just copied in the console and hit enter
This content originally appeared on DEV Community and was authored by Kaixin
Kaixin | Sciencx (2021-12-26T13:07:24+00:00) TypeRacer Hack Code. Retrieved from https://www.scien.cx/2021/12/26/typeracer-hack-code/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.