0% found this document useful (0 votes)
195 views2 pages

Red Script

This userscript runs automated tasks on the freebitco.in website: - It clicks the "free roll" and close modal buttons after 2 seconds. - It selects the user's reward points and bonus time. - If no bonus is active, it redeems the highest value reward (100 points) if points are below 1200. - It redeems the 1000% bitcoin bonus if points are above 3200. - It displays an info bar about the script and includes a bitcoin donation address that can be copied. - It runs the reward selection function every 30 seconds to continue automating tasks.

Uploaded by

Tsvetomir Ivanov
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
0% found this document useful (0 votes)
195 views2 pages

Red Script

This userscript runs automated tasks on the freebitco.in website: - It clicks the "free roll" and close modal buttons after 2 seconds. - It selects the user's reward points and bonus time. - If no bonus is active, it redeems the highest value reward (100 points) if points are below 1200. - It redeems the 1000% bitcoin bonus if points are above 3200. - It displays an info bar about the script and includes a bitcoin donation address that can be copied. - It runs the reward selection function every 30 seconds to continue automating tasks.

Uploaded by

Tsvetomir Ivanov
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 Auto Faucet


// @namespace http://gamble.ghost-server.de
// @version 0.56
// @description feel free to donate: 17ikk6SfeiTcZjPXZgGpt9uNGTk4WefXGH
// @author ghost
// @match https://freebitco.in/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

var body = $('body');

var points = {};

if ($('#free_play_form_button').is(':visible'))
setTimeout(function(){ $('#free_play_form_button').click();},2000);
if ($('.close-reveal-modal').is(':visible'))
setTimeout(function(){ $('.close-reveal-modal').click(); },2000);

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.bonustime.min = parseInt(reward.bonustime.text.split(":")[1]);
reward.bonustime.sec = parseInt(reward.bonustime.text.split(":")[2]);
reward.bonustime.current = reward.bonustime.hour * 3200 +
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 < 1200) {
console.log("waiting for points");
}
else if (reward.points < 1200) {
console.log("waiting for points 1");
RedeemRPProduct('free_points_100');
}
else if (reward.points < 1200) {
console.log("waiting for points 1");
RedeemRPProduct('free_points_100');
}
else if (reward.points < 1200) {
console.log("waiting for points 1");
RedeemRPProduct('free_points_100');
}
else {
RedeemRPProduct('free_points_100');
}
if ($('#bonus_fp_bonus').length === 0)
if (reward.points >= 3200)
RedeemRPProduct('fp_bonus_1000');
}
};
body.prepend(
$('<div/>').attr('style',"position:fixed;top:45px;left:0;z-
index:999;width:350px;background-color:green;color: red; text-align: right;")
.append(
$('<div/>').attr('id','autofaucet')
.append($('<p/>').attr('style','text-
decoration:underline;').text("freebitco.in auto faucet by ghost"))
.append($('<p/>').text("If you like it, consider a Donation to
"))
.append($('<p/>').text("1KLPaoMeZG9r2SBV5sG9BVHWAQ4Eu82aCF"))
.append($('<p/>').text("(click to copy address)"))
.append($('<p/>')
.append($('<p/>').text("Current Feature:"))
.append($('<p/>').text("auto free roll"))
.append($('<p/>').text("autochoose highest reward points"))
.append($('<p/>').text("autochoose 1000% btc bonus (only on
highest reward)"))
)
).click(function(){
var $temp = $('<input>').val("17ikk6SfeiTcZjPXZgGpt9uNGTk4WefXGH");
body.append($temp);
$temp.select();
document.execCommand("copy");
$temp.remove();
})
).prepend($('<style/>')
.text("#autofaucet p { margin: 0; margin-left: 2px; text-align: left; }")
)
setTimeout(reward.select,500);
setInterval(reward.select,900);
})();

You might also like