bitverts.io

Sign up: https://anon.to/vH9b9B - Login, Click "View PTC Ads", Bot starts, sometime you have to complete a recaptcha code

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         bitverts.io
// @namespace    http://moneybot24.com/
// @version      1.3.1
// @description  Sign up: https://anon.to/vH9b9B - Login, Click "View PTC Ads", Bot starts, sometime you have to complete a recaptcha code
// @author       MoneyBot24.com
// @match        http://bitverts.io/*
// ==/UserScript==

(function() {
    // bitcoin = 1, ethereum = 2, litecoin = 3, bitcoin cash = 4
    var coin = 1;  // change the number to the coin
    if(window.location.href.indexOf("see?ptc&v=") > -1)
    {
        var i = setInterval( function() {
            if(document.documentElement.innerText.indexOf('Success') > -1 || document.documentElement.innerText.indexOf('Error! Invalid Captcha.') > -1)
            {
                setTimeout( function(){
                    location.href = "http://bitverts.io/see-ads?b=" + coin;
                }, 1000);
            }
            else if(document.documentElement.innerText.indexOf('Please complete the captcha before you can get credited.') > -1)
            {
                alert('Captcha');
                clearInterval(i);
                setInterval( function() {
                    if(document.documentElement.innerText.indexOf('Success') > -1 || document.documentElement.innerText.indexOf('Error! Invalid Captcha.') > -1)
                    {
                        setTimeout( function(){
                            location.href = "http://bitverts.io/see-ads?b=" + coin;
                        }, 1000);
                    }
                }, 1000);
            }
        }, 1000);
    }
    else if(window.location.href.indexOf("see-ads") > -1)
    {
        var loc = parseInt(window.location.href.split('=')[1]);
        if(loc !== coin)
        {
            location.href = "http://bitverts.io/see-ads?b=" + coin;
        }
        else
        {
            var o =  $('.block-content.block-content-full').find('[id*=ad].col-md-3').not('#ad').find('a').not('.fc-state-disabled');

            if(o.length !== 0)
            {
                o.first().addClass('fc-state-disabled');
                console.log(o.first().attr('href'));
                var win = window.open(o.first().attr('href'));
                window.close();
            }
            else
            {
                alert('change the coin in the script');
            }
        }
    }

})();