Last active
February 2, 2022 16:57
-
-
Save pedrohills/d992650f6fbe01de36e532f9ffbc796c to your computer and use it in GitHub Desktop.
CryptoJetski Quick Race and Refuel Trick
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// When executing this code, the form to fill the captcha will appear. After that, the captcha will be filled in automatically and the race will start. | |
// Run the code until all your jetskis races are finished. Tip: with the console open, use the up key on the keyboard and press enter to repeat the last code executed. | |
// At the "Play Game" screen, press F12. Paste the code below in the "Console" tab. | |
// Na página "Play Game" pressione F12. Cole o código abaixo na aba "Console". | |
$(".race_button").first().click(); | |
setTimeout(function() { | |
$("#input_captcha").val($("#raceModal h2").first().html()); | |
$("#race_play").click(); | |
}, 500); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Ao executar o código abaixo, automaticamente abrirá a tela de reabastecimento com todas as caixas de seleção dos seus jetskis marcadas. É um excelente código para quem tem muitos jetskis. | |
// Running the code below will automatically open the refueling screen with all your jetskis' checkboxes checked. It is an excellent code for those who have many jetskis. | |
// At the "Play Game" screen, press F12. Paste the code below in the "Console" tab. | |
// Na página "Play Game" pressione F12. Cole o código abaixo na aba "Console". | |
$(".btn-play").click(); | |
$(".check_refuel").attr('checked','checked'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment