Auto Roll - litecoin & Ethereum - (H-CAPTCHA)

Roll every hour with h-captcha solver.......Please support join my referrel id given id

// ==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
// ==/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.location.reload());
        }, 1000);

}
});

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