// ==UserScript== // @name Wheelofgold.com // @namespace http://tampermonkey.net/ // @version 2.9 // @description Earn free crypto // @author MrBug // @match https://wheelofgold.com/* // @match https://www.google.com/url?q=https%3A%2F%2Fwheelofgold* // @updateURL https://sharetext.me/b07ctfnukf // @downloadURL https://sharetext.me/b07ctfnukf // @icon https://icons.iconarchive.com/icons/cjdowner/cryptocurrency-flat/48/Tether-USDT-icon.png // @grant GM_getValue // @grant GM_setValue // @grant window.close // ==/UserScript== // // READ CAREFULLY: // I don't give you any permission to copy, modify, merge, publish, distribute, // sublicense, and/or sell copies of this script. // // SUPPORT THE AUTHOR: // If you want to support my work, // visit this shortener every 24 hours: // https://cuty.io/SupportMrBug // // THANK YOU FOR YOUR SUPPORT! // // REQUIREMENTS: // - Letter with red lines solver => https://greasyfork.org/en/scripts/461583-solver-letters-with-red-lines // - You will need to check the cloudflare turnstile challenge: CLOUDFLARE SCRIPT ==> https://sharetext.me/3mdagzudkt // // DESCRIPTION: // Edit line 40 with you faucetpay email address // Edit line 42 with "yes" or "no" // Then go to https://wheelofgold.com/?r=21187 and keep the window opened (function() { 'use strict'; var mailaddress = "faucetpay_mailaddress" var multicoin_mode = "yes" let lastclaim = GM_getValue('lastclaim') let url1 = GM_getValue('url1') let url2 = GM_getValue('url2') let url3 = GM_getValue('url3') let url4 = GM_getValue('url4') let url5 = GM_getValue('url5') let url6 = GM_getValue('url6') let url7 = GM_getValue('url7') let url8 = GM_getValue('url8') let url9 = GM_getValue('url9') let url10 = GM_getValue('url10') let url11 = GM_getValue('url11') let coin1 = GM_getValue('coin1') let coin2 = GM_getValue('coin2') let coin3 = GM_getValue('coin3') let coin4 = GM_getValue('coin4') let coin5 = GM_getValue('coin5') let coin6 = GM_getValue('coin6') let coin7 = GM_getValue('coin7') let coin8 = GM_getValue('coin8') let coin9 = GM_getValue('coin9') let coin10 = GM_getValue('coin10') let coin11 = GM_getValue('coin11') if (window.location.href.includes("firewall")) { let firewall = setInterval(function() { let hcaptcha = document.querySelector('.h-captcha > iframe') let boton = document.querySelector("button[type='submit']") if (boton && ((hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && hcaptcha.getAttribute('data-hcaptcha-response').length > 0) || grecaptcha.getResponse().length > 0)) { boton.click() clearInterval(firewall) }}, 5000) } setTimeout(function() { if (document.querySelector("div.card div.card-body a")) { let cardcoin_number = document.querySelectorAll("div.card div.card-body a") if (cardcoin_number.length == 1) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', 0) GM_setValue('url3', 0) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', 0) GM_setValue('coin3', 0) } if (cardcoin_number.length == 2) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', 0) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', 0) } if (cardcoin_number.length == 3) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', cardcoin_number[2].href) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/").length-1].split(".")[0]) } if (cardcoin_number.length == 4) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', cardcoin_number[2].href) GM_setValue('url4', cardcoin_number[3].href) GM_setValue('url5', 0) GM_setValue('url6', 0) GM_setValue('url7', 0) GM_setValue('url8', 0) GM_setValue('url9', 0) GM_setValue('url10', 0) GM_setValue('url11', 0) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/").length-1].split(".")[0]) GM_setValue('coin4', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/").length-1].split(".")[0]) GM_setValue('coin5', 0) GM_setValue('coin6', 0) GM_setValue('coin7', 0) GM_setValue('coin8', 0) GM_setValue('coin9', 0) GM_setValue('coin10', 0) GM_setValue('coin11', 0) } if (cardcoin_number.length == 5) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', cardcoin_number[2].href) GM_setValue('url4', cardcoin_number[3].href) GM_setValue('url5', cardcoin_number[4].href) GM_setValue('url6', 0) GM_setValue('url7', 0) GM_setValue('url8', 0) GM_setValue('url9', 0) GM_setValue('url10', 0) GM_setValue('url11', 0) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/").length-1].split(".")[0]) GM_setValue('coin4', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/").length-1].split(".")[0]) GM_setValue('coin5', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/").length-1].split(".")[0]) GM_setValue('coin6', 0) GM_setValue('coin7', 0) GM_setValue('coin8', 0) GM_setValue('coin9', 0) GM_setValue('coin10', 0) GM_setValue('coin11', 0) } if (cardcoin_number.length == 6) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', cardcoin_number[2].href) GM_setValue('url4', cardcoin_number[3].href) GM_setValue('url5', cardcoin_number[4].href) GM_setValue('url6', cardcoin_number[5].href) GM_setValue('url7', 0) GM_setValue('url8', 0) GM_setValue('url9', 0) GM_setValue('url10', 0) GM_setValue('url11', 0) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/").length-1].split(".")[0]) GM_setValue('coin4', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/").length-1].split(".")[0]) GM_setValue('coin5', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/").length-1].split(".")[0]) GM_setValue('coin6', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/").length-1].split(".")[0]) GM_setValue('coin7', 0) GM_setValue('coin8', 0) GM_setValue('coin9', 0) GM_setValue('coin10', 0) GM_setValue('coin11', 0) } if (cardcoin_number.length == 7) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', cardcoin_number[2].href) GM_setValue('url4', cardcoin_number[3].href) GM_setValue('url5', cardcoin_number[4].href) GM_setValue('url6', cardcoin_number[5].href) GM_setValue('url7', cardcoin_number[6].href) GM_setValue('url8', 0) GM_setValue('url9', 0) GM_setValue('url10', 0) GM_setValue('url11', 0) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/").length-1].split(".")[0]) GM_setValue('coin4', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/").length-1].split(".")[0]) GM_setValue('coin5', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/").length-1].split(".")[0]) GM_setValue('coin6', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/").length-1].split(".")[0]) GM_setValue('coin7', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/").length-1].split(".")[0]) GM_setValue('coin8', 0) GM_setValue('coin9', 0) GM_setValue('coin10', 0) GM_setValue('coin11', 0) } if (cardcoin_number.length == 8) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', cardcoin_number[2].href) GM_setValue('url4', cardcoin_number[3].href) GM_setValue('url5', cardcoin_number[4].href) GM_setValue('url6', cardcoin_number[5].href) GM_setValue('url7', cardcoin_number[6].href) GM_setValue('url8', cardcoin_number[7].href) GM_setValue('url9', 0) GM_setValue('url10', 0) GM_setValue('url11', 0) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/").length-1].split(".")[0]) GM_setValue('coin4', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/").length-1].split(".")[0]) GM_setValue('coin5', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/").length-1].split(".")[0]) GM_setValue('coin6', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/").length-1].split(".")[0]) GM_setValue('coin7', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/").length-1].split(".")[0]) GM_setValue('coin8', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[7].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[7].src.split("/").length-1].split(".")[0]) GM_setValue('coin9', 0) GM_setValue('coin10', 0) GM_setValue('coin11', 0) } if (cardcoin_number.length == 9) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', cardcoin_number[2].href) GM_setValue('url4', cardcoin_number[3].href) GM_setValue('url5', cardcoin_number[4].href) GM_setValue('url6', cardcoin_number[5].href) GM_setValue('url7', cardcoin_number[6].href) GM_setValue('url8', cardcoin_number[7].href) GM_setValue('url9', cardcoin_number[8].href) GM_setValue('url10', 0) GM_setValue('url11', 0) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/").length-1].split(".")[0]) GM_setValue('coin4', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/").length-1].split(".")[0]) GM_setValue('coin5', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/").length-1].split(".")[0]) GM_setValue('coin6', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/").length-1].split(".")[0]) GM_setValue('coin7', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/").length-1].split(".")[0]) GM_setValue('coin8', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[7].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[7].src.split("/").length-1].split(".")[0]) GM_setValue('coin9', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[8].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[8].src.split("/").length-1].split(".")[0]) GM_setValue('coin10', 0) GM_setValue('coin11', 0) } if (cardcoin_number.length == 10) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', cardcoin_number[2].href) GM_setValue('url4', cardcoin_number[3].href) GM_setValue('url5', cardcoin_number[4].href) GM_setValue('url6', cardcoin_number[5].href) GM_setValue('url7', cardcoin_number[6].href) GM_setValue('url8', cardcoin_number[7].href) GM_setValue('url9', cardcoin_number[8].href) GM_setValue('url10', cardcoin_number[9].href) GM_setValue('url11', 0) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/").length-1].split(".")[0]) GM_setValue('coin4', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/").length-1].split(".")[0]) GM_setValue('coin5', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/").length-1].split(".")[0]) GM_setValue('coin6', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/").length-1].split(".")[0]) GM_setValue('coin7', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/").length-1].split(".")[0]) GM_setValue('coin8', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[7].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[7].src.split("/").length-1].split(".")[0]) GM_setValue('coin9', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[8].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[8].src.split("/").length-1].split(".")[0]) GM_setValue('coin10', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[9].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[9].src.split("/").length-1].split(".")[0]) GM_setValue('coin11', 0) } if (cardcoin_number.length == 11) { GM_setValue('url1', cardcoin_number[0].href) GM_setValue('url2', cardcoin_number[1].href) GM_setValue('url3', cardcoin_number[2].href) GM_setValue('url4', cardcoin_number[3].href) GM_setValue('url5', cardcoin_number[4].href) GM_setValue('url6', cardcoin_number[5].href) GM_setValue('url7', cardcoin_number[6].href) GM_setValue('url8', cardcoin_number[7].href) GM_setValue('url9', cardcoin_number[8].href) GM_setValue('url10', cardcoin_number[9].href) GM_setValue('url11', cardcoin_number[10].href) GM_setValue('coin1', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[0].src.split("/").length-1].split(".")[0]) GM_setValue('coin2', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[1].src.split("/").length-1].split(".")[0]) GM_setValue('coin3', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[2].src.split("/").length-1].split(".")[0]) GM_setValue('coin4', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[3].src.split("/").length-1].split(".")[0]) GM_setValue('coin5', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[4].src.split("/").length-1].split(".")[0]) GM_setValue('coin6', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[5].src.split("/").length-1].split(".")[0]) GM_setValue('coin7', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[6].src.split("/").length-1].split(".")[0]) GM_setValue('coin8', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[7].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[7].src.split("/").length-1].split(".")[0]) GM_setValue('coin9', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[8].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[8].src.split("/").length-1].split(".")[0]) GM_setValue('coin10', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[9].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[9].src.split("/").length-1].split(".")[0]) GM_setValue('coin11', document.querySelectorAll("div.card div.card-body img.currency-dashboard")[10].src.split("/")[document.querySelectorAll("div.card div.card-body img.currency-dashboard")[10].src.split("/").length-1].split(".")[0]) } } }, 2000) /* let stopandgo = setInterval(function() { let boton = document.querySelector("button#cbtns") if (boton && grecaptcha.getResponse().length > 0) { window.stop() window.scrollTo(0, document.body.scrollHeight) clearInterval(stopandgo) }}, 3000) */ setTimeout(function() { let coin = document.querySelector('main img.currency-dashboard') let balance = document.querySelector("main img").nextElementSibling if (coin && balance && balance.innerText !== "Ready") { if (multicoin_mode == "yes") { if (coin.src.includes(coin1) && url2 !== 0) { window.location.replace(url2) } if ((coin.src.includes(coin1) && url2 == 0) || (coin.src.includes(coin2) && url3 == 0) || (coin.src.includes(coin3) && url4 == 0) || (coin.src.includes(coin4) && url5 == 0) || (coin.src.includes(coin5) && url6 == 0) || (coin.src.includes(coin6) && url7 == 0) || (coin.src.includes(coin7) && url8 == 0) || (coin.src.includes(coin8) && url9 == 0) || (coin.src.includes(coin9) && url10 == 0) || (coin.src.includes(coin10) && url11 == 0) || (coin.src.includes(coin11) && url1 !== 0)) { window.location.replace(url1) } if (coin.src.includes(coin2) && url3 !== 0) { window.location.replace(url3) } if (coin.src.includes(coin3) && url4 !== 0) { window.location.replace(url4) } if (coin.src.includes(coin4) && url5 !== 0) { window.location.replace(url5) } if (coin.src.includes(coin5) && url6 !== 0) { window.location.replace(url6) } if (coin.src.includes(coin6) && url7 !== 0) { window.location.replace(url7) } if (coin.src.includes(coin7) && url8 !== 0) { window.location.replace(url8) } if (coin.src.includes(coin8) && url9 !== 0) { window.location.replace(url9) } if (coin.src.includes(coin9) && url10 !== 0) { window.location.replace(url10) } if (coin.src.includes(coin10) && url11 !== 0) { window.location.replace(url11) } } if (multicoin_mode == "no") { window.close() } }}, 8000) setTimeout(function() { let claimsleft = document.querySelector("#main > section > div.container > div.text-center.mt-2.mb-3 > div.row > div.text-primary.col > p:nth-child(1)") if (claimsleft && claimsleft.innerText == "0/1000") { window.location.replace("https://wheelofgold.com/blog") }}, 4000) let claim = setInterval(function() { let coin = document.querySelector('main img.currency-dashboard') let hcaptcha = document.querySelector('.h-captcha > iframe') let boton = document.querySelector("button#cbtns") let letters = document.querySelector("input.form-control.border.border-primary.mb-3") if (letters && letters.value !== "" && ((hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && hcaptcha.getAttribute('data-hcaptcha-response').length > 0) || grecaptcha.getResponse().length > 0) && boton && boton.willValidate == true) { GM_setValue('lastclaim', coin.src.split("/")[coin.src.split("/").length-1].split(".")[0]) setTimeout(function() { boton.click(); }, 2000) clearInterval(claim) } if (!letters && ((hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && hcaptcha.getAttribute('data-hcaptcha-response').length > 0) || grecaptcha.getResponse().length > 0) && boton && boton.willValidate == true) { GM_setValue('lastclaim', coin.src.split("/")[coin.src.split("/").length-1].split(".")[0]) setTimeout(function() { boton.click(); }, 2000) clearInterval(claim) } if ((letters && letters.value == "" && ((hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && hcaptcha.getAttribute('data-hcaptcha-response').length > 0) || grecaptcha.getResponse().length > 0) && boton && boton.willValidate == true) || (letters && ((hcaptcha && hcaptcha.hasAttribute('data-hcaptcha-response') && !hcaptcha.getAttribute('data-hcaptcha-response').length > 0) || (grecaptcha && !grecaptcha.getResponse())) && boton && boton.willValidate == true)) { let coin = document.querySelector('main img.currency-dashboard') if (multicoin_mode == "yes") { if (coin.src.includes(coin1) && url2 !== 0) { window.location.replace(url2) } if ((coin.src.includes(coin1) && url2 == 0) || (coin.src.includes(coin2) && url3 == 0) || (coin.src.includes(coin3) && url4 == 0) || (coin.src.includes(coin4) && url5 == 0) || (coin.src.includes(coin5) && url6 == 0) || (coin.src.includes(coin6) && url7 == 0) || (coin.src.includes(coin7) && url8 == 0) || (coin.src.includes(coin8) && url9 == 0) || (coin.src.includes(coin9) && url10 == 0) || (coin.src.includes(coin10) && url11 == 0) || (coin.src.includes(coin11) && url1 !== 0)) { window.location.replace(url1) } if (coin.src.includes(coin2) && url3 !== 0) { window.location.replace(url3) } if (coin.src.includes(coin3) && url4 !== 0) { window.location.replace(url4) } if (coin.src.includes(coin4) && url5 !== 0) { window.location.replace(url5) } if (coin.src.includes(coin5) && url6 !== 0) { window.location.replace(url6) } if (coin.src.includes(coin6) && url7 !== 0) { window.location.replace(url7) } if (coin.src.includes(coin7) && url8 !== 0) { window.location.replace(url8) } if (coin.src.includes(coin8) && url9 !== 0) { window.location.replace(url9) } if (coin.src.includes(coin9) && url10 !== 0) { window.location.replace(url10) } if (coin.src.includes(coin10) && url11 !== 0) { window.location.replace(url11) } } if (multicoin_mode == "no") { window.location.href = "https://wheelofgold.com/miner/currency/"+lastclaim clearInterval(claim) } }}, 2000) let claim2 = setInterval(function() { let letters = document.querySelector("input.form-control.border.border-primary.mb-3") let balance = document.querySelector("span.text-success") let boton = document.querySelector("main a.btn.btn-primary") let coin = document.querySelector('main img.currency-dashboard') if (!letters && balance && balance.innerText == "Ready" && boton && boton.innerText == 'Go Claim') { boton.click() clearInterval(claim2) }}, 2000) setTimeout(function ref() { if (window.location.href == "https://wheelofgold.com/" || window.location.href == "https://wheelofgold.com") { window.location.replace("https://wheelofgold.com/?r=21187") }}, 3000) setTimeout(function login() { let botonlogin = document.querySelector("a.btn.btn-primary.mb-1") if (window.location.href == "https://wheelofgold.com/?r=21187") { botonlogin.click() } setTimeout(function address() { let addressform = document.querySelector("#loginform > div > input") if (addressform && addressform.value == "" && window.location.href == "https://wheelofgold.com/?r=21187") { addressform.value = mailaddress } setTimeout(function() { let addressform = document.querySelector("input#email.form-control") let submit = document.querySelector("button.btn.btn-primary.btn-block") submit.click() }, 3000) }, 3000) }, 4000) setTimeout(function() { if (window.location.href == "https://wheelofgold.com/dashboard") { if (lastclaim == undefined) { window.location.replace(document.querySelector("div.card div.card-body a").href) } if (lastclaim !== undefined) { window.location.href = "https://wheelofgold.com/miner/currency/"+lastclaim } }}, 10000) setTimeout(function redirect() { let redirboton = document.querySelector("body > div > a:nth-child(1)") if (window.location.href.includes("google")) { redirboton.click() }}, 2000) setTimeout(function() { if (document.querySelector("div#container h1").innerText == 'A Database Error Occurred') { window.location.reload() }}, 5000) let ok = setInterval(function() { let success = document.querySelector("div.swal2-success-ring") let wrong = document.querySelector("span.swal2-x-mark") let ok = document.querySelector("button[type='button'][class='swal2-confirm swal2-styled']"); if (ok) { if (multicoin_mode == "yes") { if (ok && lastclaim.includes(coin1) && url2 !==0) { ok.click() setTimeout(function(){window.location.replace(url2)}, 2000) clearInterval(ok) } if (ok && ((lastclaim.includes(coin1) && url2 ==0) || (lastclaim.includes(coin2) && url3==0) || (lastclaim.includes(coin11) && url1!==0))) { ok.click() setTimeout(function(){window.location.replace(url1)}, 2000) clearInterval(ok) } if (ok && lastclaim.includes(coin2) && url3!==0) { ok.click() setTimeout(function(){window.location.replace(url3)}, 2000) clearInterval(ok) } if (ok && lastclaim.includes(coin3) && url4!==0) { ok.click() setTimeout(function(){window.location.replace(url4)}, 2000) clearInterval(ok) } if (ok && lastclaim.includes(coin4) && url5!==0) { ok.click() setTimeout(function(){window.location.replace(url5)}, 2000) clearInterval(ok) } if (ok && lastclaim.includes(coin5) && url6!==0) { ok.click() setTimeout(function(){window.location.replace(url6)}, 2000) clearInterval(ok) } if (ok && lastclaim.includes(coin6) && url7!==0) { ok.click() setTimeout(function(){window.location.replace(url7)}, 2000) clearInterval(ok) } if (ok && lastclaim.includes(coin7) && url8!==0) { ok.click() setTimeout(function(){window.location.replace(url8)}, 2000) clearInterval(ok) } if (ok && lastclaim.includes(coin8) && url9!==0) { ok.click() setTimeout(function(){window.location.replace(url9)}, 2000) clearInterval(ok) } if (ok && lastclaim.includes(coin9) && url10!==0) { ok.click() setTimeout(function(){window.location.replace(url10)}, 2000) clearInterval(ok) } if (ok && lastclaim.includes(coin10) && url11!==0) { ok.click() setTimeout(function(){window.location.replace(url11)}, 2000) clearInterval(ok) } } if (multicoin_mode == "no") { ok.click() window.location.href = "https://wheelofgold.com/miner/currency/"+lastclaim clearInterval(ok) } } }, 3000) //CLICK OK}, 3000) //CLICK OK setTimeout(function() { clearInterval(ok) }, 18000) setTimeout(function() { window.location.reload() }, 3*60000) setTimeout(function scroll() { let coin = document.querySelector('main img.currency-dashboard') if (coin) { window.scrollTo(0, document.body.scrollHeight); }}, 20000) setTimeout(function() { let coin = document.querySelector('main img.currency-dashboard') if (!coin) { window.location.replace("https://wheelofgold.com/dashboard") } }, 2*60000) setTimeout(function closevideoad() { let close = document.querySelector("div.avp-floating-close-button-overlay.avp-fade-enter-done") let close2 = document.querySelector("div.avp-close-button-overlay.avp-fade-enter-done") let close3 = document.querySelector('i.bi.bi-x-circle-fill') if (close) { close.click() } if (close2) { close2.click() } if (close3) { close3.click() } }, 10000) setTimeout(function close() { let close = document.querySelector("#main > section > div.container > div:nth-child(9) > span") let close2 = document.querySelector("span#skip-button.skip-button") if (close) { close.click() } if (close2) { close2.click() } }, 10000) setTimeout(function invalid() { let cartel = document.querySelector("div.alert.text-center.alert-danger") if (cartel && cartel.innerText.includes("Invalid")) { window.location.replace("https://wheelofgold.com/dashboard") }}, 3000) })();