Greasy Fork is available in English.

Tron Faucet Bot

auto claim faucet!

// ==UserScript==
// @name         Tron Faucet Bot
// @namespace    tronfaucetbot.link
// @version      2024-04-19
// @description  auto claim faucet!
// @author       Script Bot Dev
// @match        https://eftacrypto.com/claim/tron/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=eftacrypto.com
// @grant        none
// @license      MIT
// ==/UserScript==

var BOT = setInterval(function(){
if(document.body.outerText.includes("satoshi was sent to your") === true){
	window.location.reload();
	clearInterval(BOT);
}
if(document.querySelector("a[onclick]") > ""){
    document.querySelector("a[onclick]").click();
    clearInterval(BOT);
}
if(document.body.outerText.includes("Satoshi every 5 minutes") === true){
	document.querySelector("#address").value = "TRutEHXtPvaNx92FTFiRTb8LiFPbXQdfqc"; //edit this line with your adrress
	document.querySelector("form > div:nth-child(4) > button").click();
    var CAPTCHA = setInterval(function(){
                 if(document.querySelector("#recaptcha > div")){
             var antibot = document.querySelector("#antibotlinks").value;
            var recaptcha = document.querySelector("#g-recaptcha-response").value;
               if((recaptcha) && recaptcha > "" && antibot > ""){
                document.querySelector("form").submit();
                   clearInterval(CAPTCHA);
            }
            }
                              }, 500);
	clearInterval(BOT);
}

if(document.body.outerText.includes("You have to wait") === true){
	setTimeout(function(){window.location.reload();},5000);
	clearInterval(BOT);
}
},500);