Auto Roll - Litecoin Ethereum - (H-CAPTCHA) .User

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

// ==UserScript==

// @version 1.1
// @author EESHA
// @name Auto Roll - litecoin & Ethereum - (H-CAPTCHA)
// @namespace https://free-litecoin.com/
// @namespace https://www.free-ethereum.io/
// @note ------------------------------------------------------------
IMPORTANT
--------------------------------------------------------------------------
// @note YOU MUST HAVE A hCaptcha solver INSTALLED to claim from
the faucets
// @note I recommend this script:
https://greasyfork.org/en/scripts/425854-hcaptcha-solver-automatically-solves-
hcaptcha-in-browser
// @note
-----------------------------------------------------------------------------------
--------------------------------------------------------------
// @description Roll every hour with h-captcha solver.......Please support join my
referrel id given id
// @description https://free-litecoin.com/login?referer=935235
// @description https://free-ethereum.io/?referer=737395
// @match https://free-litecoin.com/*
// @match https://www.free-ethereum.io/free/
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant none
// @license GPL-3.0
// @downloadURL https://update.greasyfork.org/scripts/430016/Auto%20Roll%20-
%20litecoin%20%20Ethereum%20-%20%28H-CAPTCHA%29.user.js
// @updateURL https://update.greasyfork.org/scripts/430016/Auto%20Roll%20-
%20litecoin%20%20Ethereum%20-%20%28H-CAPTCHA%29.meta.js
// ==/UserScript==

$(document).ready(function(){
console.log("Status: Page loaded.");
if($('#timerandnotification').is(':hidden')) {
let rollInterval = setInterval(function(){
var hcaptchaVal = $('[name=h-captcha-response]').val();

if(hcaptchaVal !== "") {


clearInterval(rollInterval);
setTimeout(function(){$(".btn.btn-
success").trigger('click');},random(1000,2000));
console.log("Status: Button ROLL clicked.");
}
else console.log("Status: checking for hcaptcha solved.");
}, 1000);
}
else {
let reload_page = setInterval(function(){
console.log("Status: timer will end soon");
$('#cislo1').text() == "0" && $('#cislo2').text() == "0" &&
(clearInterval(reload_page), window.__cpLocation.reload());
}, 1000);

}
});

function random(min,max){
return min + (max - min) * Math.random();
}

You might also like