cryptobigpay.online

Faucet claim

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         cryptobigpay.online
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Faucet claim
// @author       Gysof
// @match        https://cryptobigpay.online/*
// @icon         https://cryptobigpay.online/assets/images/favicon.ico
// @grant        none
// ==/UserScript==

// Register here - https://cryptobigpay.online/?r=25000
// You will need Hcaptcha solver - link - https://chromewebstore.google.com/detail/captcha-solver-auto-hcapt/hlifkpholllijblknnmbfagnkjneagid?hl=pt-PT
// You will need AB Links Solver - I recommend mbsolver
// Editar email e pass linha 21 - 22

(async function() {
    'use strict';

    // Editar email e senha
    const email = "Your@Email"; // Substitua com seu email
    const senha = "YouPassword"; // Substitua com sua senha

    function pr() {
        document.querySelector('#email.form-control').value = email;
        document.querySelector('#password.form-control').value = senha;
    }

    function en() {
        document.querySelector('.btn.btn-primary.btn-block.waves-effect.waves-light.a1').click();
    }

    const ca = async () => {
        while (!(grecaptcha && grecaptcha.getResponse().length > 0)) {
            await new Promise(resolve => setTimeout(resolve, 100));
        }
    };

    function ve() {
        const v = document.getElementById('antibotlinks').value.replace(/\s/g, '');
        return v.length === 12;
    }

    const lo = async () => {
        while (document.readyState !== 'complete') {
            await new Promise(resolve => setTimeout(resolve, 100));
        }
    };

    function re() {
        document.querySelector('.btn.btn-primary.btn-lg.claim-button.a1').click();
    }

    const relo = () => {
        setTimeout(() => {
            window.location.reload();
        }, 5 * 60 * 1000); 
    };

    const rf = () => {
        if (window.location.href === "https://cryptobigpay.online/dashboard") {
            window.location.href = "https://cryptobigpay.online/faucet";
        }
    };

    function hc() {
        const ifr = document.querySelector('.h-captcha iframe[data-hcaptcha-response]');
        if (ifr) {
            const r = ifr.getAttribute('data-hcaptcha-response');
            if (r) {
                return true;
            }
        }
        return false;
    }

    function np() {
        if (ve() && hc()) {
            re();
            relo();
        }
    }

    window.addEventListener('load', async function() {
        if (window.location.href === "https://cryptobigpay.online/") {
            window.location.href = "https://cryptobigpay.online/login";
        }

        if (window.location.href === "https://cryptobigpay.online/login") {
            pr();
            await ca();
            en();
        }

        if (window.location.href === "https://cryptobigpay.online/faucet") {
            await lo();

            setInterval(function() {
                if (window.location.href.includes("/faucet")) {
                    np();
                }
            }, 3000);
        }

        rf();
    });

})();