50% found this document useful (2 votes)
373 views

User Script

This document contains a user script that automates claiming rewards on the website Freebitco.in. The script clicks the reCAPTCHA checkbox, clicks buttons to claim rewards, and monitors the user's reward points to redeem rewards at certain point thresholds. It displays a notification div with instructions and a Bitcoin donation address. The script runs on page load and then checks for new rewards every 60 seconds.

Uploaded by

Hacking Mania
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
50% found this document useful (2 votes)
373 views

User Script

This document contains a user script that automates claiming rewards on the website Freebitco.in. The script clicks the reCAPTCHA checkbox, clicks buttons to claim rewards, and monitors the user's reward points to redeem rewards at certain point thresholds. It displays a notification div with instructions and a Bitcoin donation address. The script runs on page load and then checks for new rewards every 60 seconds.

Uploaded by

Hacking Mania
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

// ==UserScript==

// @name Freebitco.in auto collector %1000 com ReCaptcha


// @namespace http://www.youtube.com/c/MogiHostTutoriais
// @version 2.4.3
// @description Autoclaim Freebitco.in
// @author MOGIHOST
// @match https://freebitco.in/*
// @match http*://www.google.com/recaptcha/*
// @grant none
// ==/UserScript==

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

(function() {
'use strict';
var body = $('body');

var points = {};

if ($('#free_play_form_button').is(':visible'))

setTimeout(function(){ $('#free_play_form_button').click();},8000);

if ($('.close-reveal-modal').is(':visible'))

setTimeout(function(){ $('.close-reveal-modal').click(); },8000);

var reward = {};

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.bomustime.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 (reward.points < 12) {
console.log("waiting for 12 points");
}
else if (reward.points < 120) {
console.log("waiting for 60 points");
RedeemRPProduct('free_points_1');
}
else if (reward.points < 600) {
console.log("waiting for 120 points");
RedeemRPProduct('free_points_10');
}
else if (reward.points < 1200) {
console.log("waiting for 600 points");
RedeemRPProduct('free_points_50');
}
else {
console.log("100 Free points per roll active");
RedeemRPProduct('free_points_100');
}
if ($('#bonus_span_fp_bonus').length === 0)
if (reward.points >= 4201)
RedeemRPProduct('fp_bonus_1000');
}
};
body.prepend(
$
('<div/>').attr('style',"position:fixed;top:45px;left:0;z.index:999;width:350px;bac
kground-color:DarkGreen;color:white; text-align: left;")
.append(
$('<div/>').attr('id','autofaucet')
.append($('<p/>').attr('style','text-
decoration:underline;').text("Freebitco.in auto roll 1000% by MOGIHOST"))
.append($('<p/>').text("Se você gostaou, faça uma doação
para"))
.append($('<p/>').text("1LDa7LYRdVyPrZEWew5WaVBca1hm8Udi5u"))
.append($('<p/>').text("(Clic para copiar)"))
.append($('<p/>')
)
)

).prepend($('<style/>')
.text("#autofaucet p { margin: 0; margin-left: 2px; text-align: left; }")
);
setTimeout(reward.select,1000);
setInterval(reward.select,60000);
// Your code here...
})();

You might also like