// ==UserScript== // @name AutoClaim C-ADS Faucet // @namespace http://tampermonkey.net/ // @version 2024-05-30 // @description try to take over the world! // @author Bidmaster777 // @match https://c-ads.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=c-ads.com // @grant none // ==/UserScript== //REGISTER USING FOLLOWING LINK: https://c-ads.com/?ref=t5dH //U need Cloudflare Captcha Solver //Fill in email and password below (lines 19 & 20) //Then goto https://c-ads.com/?ref=t5dH (function() { 'use strict'; const email = ""; // Replace with your email const password = ""; // Replace with your password setInterval(function() { document.getElementsByName("captcha")[1].click(); if (document.getElementsByName("cf-turnstile-response")[0].value.length > 0) { setTimeout(function() { document.querySelector('form[id="form-data"]').submit(); }, 3000); } }, 5000); setInterval(function() { if(window.location.href.includes("login")){ document.getElementsByName("email")[0].value = email; document.getElementsByName("password")[0].value = password; document.getElementsByName("captcha")[1].click(); if (document.getElementsByName("cf-turnstile-response")[0].value.length > 0) { setTimeout(function() { document.querySelector('#loginBtn').click(); }, 5000); } } if(window.location.href.includes("dashboard")){ window.location.href = "https://c-ads.com/member/faucet"; } }, 10000); setInterval(function() { window.location.href = "https://c-ads.com/member/faucet"; }, 60000); // Your code here... })();