// ==UserScript== // @name miningblocks.club // @namespace http://tampermonkey.net/ // @version 1.2 // @description Earn free crypto // @author MrBug // @match https://miningblocks.club/* // @match https://ouo.io/* // @match https://ouo.press/* // @icon https://www.google.com/s2/favicons?sz=64&domain=miningblocks.club // @updateURL https://sharetext.me/x0bbr8qovf // @downloadURL https://sharetext.me/x0bbr8qovf // @require https://greasyfork.org/scripts/461948-fbase-lib/code/FBase%20Lib.js?version=1222667 // @grant none // ==/UserScript== // // READ CAREFULLY: // I don't give you any permission to copy, modify, merge, publish, distribute, // sublicense, and/or sell copies of this script. // // REQUIREMENTS: // - HCAPTCHA SOLVER like nopecha or hektcaptcha // - Bypass All Shortlinks script ==> https://greasyfork.org/en/scripts/431691-bypass-all-shortlinks // - Faucetpay wallet ==> You can create one here ==> https://faucetpay.io/?r=5093460 // // DESCRIPTION: // If you don't have an account yet, you can register using this link: // https://miningblocks.club/?Referral=47675 // // Edit lines 36 and 37 with your email address and password // // SUPPORT LINK: // If you want to support my work, visit this shortener every 24h: https://cuty.io/SupportMrBug // THANK YOU FOR YOUR SUPPORT! (function() { 'use strict'; var mailaddress = "seuemail@gmail.com" // Type here your email address var password = "suasenha" // Type here your password if(location.hostname == 'miningblocks.club') { setTimeout(function ads() { let nads = document.querySelector("p#PTCStatus") let goad = document.querySelector("button#btnVerAds") if (window.location.href.includes("Dashboard") && nads.innerText == 'PTC ADS AVAILABLE') { goad.click() }}, 8000) if (window.location.href.includes("ViewPTC")) { let claimad = setInterval(function claimad() { let boton = document.querySelector("button#btnClaim") if (window.location.href.includes("ViewPTC") && boton && boton.style.display !== 'none') { boton.click() clearInterval(claimad) }}, 7000) } if (window.location.href.includes("Claim")) { let claim = setInterval(function claim() { let hcaptcha = document.querySelector('.h-captcha > iframe') let boton = document.querySelector("button#btnClaim") if (window.location.href.includes("Claim") && boton && hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && hcaptcha.getAttribute('data-hcaptcha-response').length > 0) { boton.click() clearInterval(claim) }}, 10000) } setTimeout(function redirlogin() { if (window.location.href == "https://miningblocks.club/" || window.location.href == "https://miningblocks.club") { window.location.replace("https://miningblocks.club/Auth/LogIn") }}, 20000) if (window.location.href.includes("LogIn")) { let login = setInterval(function login() { let hcaptcha = document.querySelector('.h-captcha > iframe') let boton = document.querySelector("button#btnLogIn") let addressform = document.querySelector("input#txtCorreo") let passform = document.querySelector("input#txtPassword") if (window.location.href.includes("LogIn") && boton && hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && hcaptcha.getAttribute('data-hcaptcha-response').length > 0 && addressform.value !== mailaddress && passform.value !== password) { addressform.value = mailaddress passform.value = password setTimeout(function() { boton.click() }, 2000) clearInterval(login) }}, 10000) } setTimeout(function ref() { if (window.location.href.includes("Register")) { window.location.replace("https://miningblocks.club/Register/NewUser?Referral=47675") }}, 2000) setTimeout(function() { if (window.location.href.includes("Dashboard")) { window.location.replace("https://ouo.io/AgViakR") }}, 15000) setTimeout(function() { if (window.location.href.includes("Claim")) { window.location.replace("https://miningblocks.club/Faucet/Claim") }}, 15*60000+20000) } if (location.hostname == 'ouo.io' || location.hostname == 'ouo.press') { setTimeout(() => { (new OuoSolver()).start(); }, rndInt(1000, 3000)); } // Your code here... })();