You are on page 1of 4

**** Freebitco.

in NO Captcha WITH LOTTERY


Auto Roll + 100 Reward Points + 1000% Bonus
BTC
This script clicks the recaptcha checkbox,takes maximum bonuses.

var Lottery = 10; // number of lottery tickets to purchase on each run


var Free_Points = "enabled", // Options enabled/disabled Toggles free points on and off
Points_100 = 1, // use 0 to disable each points level
Points_50 = 1,
Points_25 = 1,
BTC_Bonus = "enabled", // Optins enabled/disabled Toggles BTC bonus on and off
BTC_1000 = 1, // use 0 to disable each BTC level
BTC_500 = 0,
BTC_100 = 0,
Captcha = "disabled"; /* options enabled/disabled If "disabled" the script will use RP and click the
play_without_captcha button. "enabled" causes the script to loop until the captcha is solved which can take a
long time. */

(function() {
'use strict';
setTimeout(function() { document.getElementsByClassName("recaptcha-checkbox-checkmark")[0].click();
}, 1000);
})();

setTimeout(function(){
$('.close-reveal-modal')[0].click();
}, 100);

setTimeout (function() {
'use strict';
var domain = (window.location != window.parent.location) ? document.referrer.toString() :
document.location.toString();
var body = $('body');
var points = {};
var count_min = 1;
var reward = {};
var claimed = 120;

var timeout = setTimeout("location.reload(true);",3630000);


function resetTimeout() {
clearTimeout(timeout);
timeout = setTimeout("location.reload(true);",3630000);
}

reward.select = function() {
reward.points = parseInt($('.user_reward_points').text().replace(',',""));
reward.bonustime = {};
if ($("#bonus_container_free_points").length != 0) {
reward.bonustime.text = $('#bonus_span_free_points').text();
reward.bonustime.hour = parseInt(reward.bonustime.text.split(":")[0]);
reward.bonustime.min = parseInt(reward.bonustime.text.split(":")[1]);
reward.bonustime.sec = parseInt(reward.bonustime.text.split(":")[2]);
reward.bonustime.current = reward.bonustime.hour * 3600 + reward.bonustime.min * 60 +
reward.bonustime.sec;
} else {
reward.bonustime.current = 0;
}
console.log(reward.bonustime.current);
if (reward.bonustime.current !== 0) {
console.log(reward.bonustime.current);
} else
if (Free_Points === "enabled"){
if (reward.points < 120) {
console.log("waiting for 120 points");
}
else {
if (Points_100 !== 0) {
claimed = 1200; }
else if (Points_50 !== 0) {
claimed = 600; }
else if (Points_25 !== 0) {
claimed = 300; }
else { claimed = 120; }

if ((Points_100 !== 0) && (reward.points > 1200)){


RedeemRPProduct('free_points_100');}
else if ((Points_50 !== 0) && (reward.points > 600)){
RedeemRPProduct('free_points_50');}
else if ((Points_25 !== 0) && (reward.points > 300)){
RedeemRPProduct('free_points_25');}
else {
RedeemRPProduct('free_points_10');}
}

if ($('#bonus_span_fp_bonus').length === 0) {
if (BTC_Bonus === "enabled"){
if (reward.points < (claimed + 320)) {
console.log("waiting for ", (320 + claimed) , "points");
}
else {
if ((BTC_1000 !== 0) && (reward.points > (3200 + claimed))){
RedeemRPProduct('fp_bonus_1000');}
else if ((BTC_500 !== 0) && (reward.points > (1600 + claimed))){
RedeemRPProduct('fp_bonus_500');}
else if ((BTC_100 !== 0 ) && (rewaed.points > (320 + claimed))){
RedeemRPProduct('fp_bonus_100');}
}
}
}
}

$('.close-reveal-modal')[0].click();
};

setTimeout (function () {body.prepend(


$('<div/>').attr('style',"position:fixed;top:50px;left:0;z-index:999;width:368px;background-color:black;color:
white; text-align: center;")
.append(
$('<div/>').attr('id','autofaucet')
.append($('<p/>').attr('style','text-decoration:underline;color: red').text("Auto Roll Script With 100 RP
+ 1000% Bonus"))
.append($('<p/>').attr('style','text-decoration:underline;color: red').text("And Captcha Workaround"))
.append($('<p/>').text("Script by Internet To Cash"))
.append($('<p/>').text("Support by using my link:"))
.append($('<p/>').attr('style',"color: green").text("https://freebitco.in/?r=23268195"))
.append($('<p/>').text("(Click to copy)"))
.append($('<p/>')
)
).click(function(){
var $temp = $('<input>').val("https://freebitco.in/?r=23268195");
body.append($temp);
$temp.select();
document.execCommand("copy");
$temp.remove();
})
).prepend($('<style/>')
.text("#autofaucet p { margin: 0; margin-left: 2px; text-align: center; }")
)
body.prepend(
$('<div/>').attr('style',"position:fixed;top:200px;left:0;z-index:999;width:368px;background-color:black;color:
white; text-align: center;")
.append(
$('<div/>').attr('id','autofaucet')
.append($('<p/>').text("Or Send BTC donations here:"))
.append($('<p/>').attr('style',"color: green").text("bc1qmja4xz7lgsalcnfg80xju2nswlxkx29vfnchc5"))
.append($('<p/>').text("(Click to copy)"))
.append($('<p/>')
)
).click(function(){
var $temp = $('<input>').val("bc1qmja4xz7lgsalcnfg80xju2nswlxkx29vfnchc5");
body.append($temp);
$temp.select();
document.execCommand("copy");
$temp.remove();
})
).prepend($('<style/>')
.text("#autofaucet p { margin: 0; margin-left: 2px; text-align: center; }")
)
$('#lottery_tickets_purchase_count').val(Lottery);
document.getElementById('purchase_lottery_tickets_button').click();
console.log("Purchased Lottery Tickets");
},26000);

setTimeout(reward.select,1000);
setInterval(reward.select,60000);
$(document).ready(function(){
console.log("Status: Page loaded.");
setTimeout(function(){
if (grecaptcha.getResponse().length === 0) {
if ($('#play_without_captchas_button').is(':visible')) {
$('#play_without_captchas_button').click(); }
console.log("Status: Play Without Captcha button clicked.");
}
}, random(12000,14000));
setInterval(function(){
console.log("Status: Elapsed time " + count_min + " minutes");
count_min = count_min + 1;
}, 60000);
setInterval(function(){
if ($('#free_play_form_button').is(':visible')) {
$('#free_play_form_button').click(); }
console.log("Status: Button ROLL clicked again.");
}, random(14000,16000));
setTimeout(function(){
$('.close-reveal-modal')[0].click();
console.log("Status: Button CLOSE POPUP clicked.");
}, random(20000,26000));
});
function random(min,max){
return min + (max - min) * Math.random();
}

},8000);

You might also like