// ==UserScript== // @name Ourcoincash // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author Venas // @match https://ourcoincash.xyz/* // @icon https://www.google.com/s2/favicons?sz=64&domain=ourcoincash.xyz // @grant none // @grant GM_xmlhttpRequest // @grant GM_setValue // @grant GM_getValue // @license MIT // ==/UserScript== (function() { 'use strict'; var email = "seu-emial@gmail.com";////EXAMPLE//// var password = "sua-senha";////EXAMPLE//// function isCaptchaChecked() { return grecaptcha && grecaptcha.getResponse().length !== 0; } /////Login//// if(window.location.href === "https://ourcoincash.xyz/"){ window.location.replace("https://ourcoincash.xyz/login")} if(window.location.href.includes("https://ourcoincash.xyz/login")){ setInterval(function() { if (document.querySelector("input[name='email']")) { document.querySelector("input[name='email']").value = email; } if (document.querySelector("input[name='password']")) { document.querySelector("input[name='password']").value = password; } }, 5000); setInterval(function() { if (isCaptchaChecked()) { if (document.querySelector("button[type='submit']")) { document.querySelector("button[type='submit']").click(); } } }, 6000); } if(window.location.href.includes("https://ourcoincash.xyz/ptc?")){ window.location.replace("https://ourcoincash.xyz/ptc")} if(window.location.href.includes("https://ourcoincash.xyz/dashboard")){ window.location.replace("https://ourcoincash.xyz/ptc")} ///////////Faucet ////// if(window.location.href.includes ("https://ourcoincash.xyz/faucet")){ setInterval(function(){ if (isCaptchaChecked()) { document.querySelector("button.btn").click(); } }, 10000); } ////////PTC////// if(window.location.href === "https://ourcoincash.xyz/ptc"){ if(document.querySelector(".col-sm-6:nth-child(1) .btn")){ document.querySelector(".col-sm-6:nth-child(1) .btn").click();}} if(window.location.href.includes("https://ourcoincash.xyz/ptc/view")){ setInterval(function(){ if (isCaptchaChecked()) { document.querySelector("button[type='submit']").click(); } }, 6000); } //Redirecionamento if (window.location.href.includes("https://ourcoincash.xyz/ptc") && document.body.innerHTML.includes("There is PTC Ad left")){ window.location.replace("https://ourcoincash.xyz/faucet")} if(window.location.href.includes("https://ourcoincash.xyz/faucet") && document.body.innerHTML.includes("Daily limit reached")){ window.location.replace("https://ourcoincash.xyz/auto")} // Aguarde um pouco para garantir que a página tenha carregado completamente setTimeout(function() { // Localize e clique no elemento usando o seletor CSS fornecido document.querySelector('.col-lg-3:nth-child(1) .btn').click(); }, 5000); })();