Skip to content

Instantly share code, notes, and snippets.

@harishanchu
Last active August 28, 2023 04:54
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save harishanchu/6852427 to your computer and use it in GitHub Desktop.
Save harishanchu/6852427 to your computer and use it in GitHub Desktop.
typeracer.com cheat
//Before you start typing open your developer console and paste the following script
//Now pressing any key will result in to correct key press untill you reach next space key.
//I made the user push space to move further, so that someone viewing your typing will think you are not faking.
//warning: Site detects the WPM above 100 and asks you to do a captcha test.
var jq = document.createElement('script');
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
// ... give time for script to load, then type.
jQuery.noConflict();
// execute the following script in the console
(function($)
{
var inputText;
var flag = true;
var i = 0;
$('body').on('keypress','.txtInput',function(e)
{
if(flag)
{
inputText = $('.inputPanel tr:first').text();
flag = false;
}
if(inputText[i] == " ")
{
if((e.which || e.keyCode)==32)
i++;
else
e.preventDefault();
}
else
{
e.preventDefault();
$( '.txtInput' ).val($( '.txtInput' ).val()+inputText[i]);
i++;
}
});
})(jQuery);
@Shresht007
Copy link

Respect to this guy, he made a pretty damn smart code. I think half of y'all didn't even read the code and just copied it.

@arch-user-france1
Copy link

arch-user-france1 commented Jan 7, 2022

But it's pretty small and uses JQuery, a library.
Of course I'd read the code..

@CarefulGaming
Copy link

It works good.... but it won't go on my account because when I do it they have to verify me because I'm going over 100 wpm. And I always fail

@CarefulGaming
Copy link

well fuck i got banned for cheating

@PastaShapes
Copy link

stop cheating; get good :D

@benzyme16
Copy link

it works 1 in 10 times

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