Ojooo

Sign up: http://goo.gl/x3jCD4 - Login, Click "Paid to click ads" or "Ojooo Grid", bots start automatically

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==
// icon https://wad.ojooo.com/img/icons/favicon-96x96.png?2
// @name Ojooo
// @namespace https//moneybot24.com/
// @version 1.2
// @description Sign up: http://goo.gl/x3jCD4 - Login, Click "Paid to click ads" or "Ojooo Grid", bots start automatically
// @Author MoneyBot24.com
// @match http://wad.ojooo.com/*
// ==/UserScript==

(function() {
if(window.location.href.indexOf("http://wad.ojooo.com/cks.php?cdk=flase&cointoss=") > -1)
{
console.log('close grid');
setInterval(function(){
var len = $('.close_window').length;
if(len > 0)
{
window.close();
}
},1000);
}
else if(window.location.href.indexOf("http://wad.ojooo.com/cks.php?k=") > -1)
{
setInterval(function(){
if ((document.documentElement.innerText.indexOf('Ihr Klick wurde bestätigt') > -1) ||(document.documentElement.innerText.indexOf('Your click has been validated') > -1))
{
location.href = 'http://wad.ojooo.com/ads.php';
}
else if((document.documentElement.innerText.indexOf('You have already viewed this advertisement, please come back after 24h.') > -1))
{
location.href = 'http://wad.ojooo.com/ads.php';
}
},1000);
}
else if(window.location.href.indexOf("http://wad.ojooo.com/cointoss.php") > -1)
{
console.log('grid');
var changes = parseInt($("tr:contains('/10')").find('td:eq(1)').text().split('/')[0]);
console.log('Changes:' + changes);
if(changes !== 0)
{
var random1 = Math.floor((Math.random() * 20) + 1);
var random2 = Math.floor((Math.random() * 28) +1);
console.log('Random1: ' + random1 + ' Random2: ' + random2);
$('#' + random1).attr('name', random2).click();
}
loadNew();
}
else if(window.location.href.indexOf("http://wad.ojooo.com/ads.php") > -1)
{
var el = $(".tile:not(.viewed):not(.only_mobile_box)").parent().not('.ChillTip_ads');
var len = el.length;
if(len > 0)
{
var href = el.attr('href');
window.open(href, '_self');
}
else
{
location.href = 'http://wad.ojooo.com/cointoss.php';
}
}
})();