0% found this document useful (0 votes)
191 views

Script

This userscript automates tasks on the freebitco.in website to autoclaim bitcoin rewards. It refreshes the page every 5 hours, clicks buttons to play without captchas and roll for rewards on a randomized interval between 2-4 seconds. It also closes popups between 12-18 seconds and rerolls for rewards every hour to claim free bitcoin.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
191 views

Script

This userscript automates tasks on the freebitco.in website to autoclaim bitcoin rewards. It refreshes the page every 5 hours, clicks buttons to play without captchas and roll for rewards on a randomized interval between 2-4 seconds. It also closes popups between 12-18 seconds and rerolls for rewards every hour to claim free bitcoin.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

// ==UserScript==

// @name Freebitco.in Autoclaim + Force Refresh Page


// @namespace By youtube.com/c/BITCOINCHANNEL
// @version 0.1.3
// @description Autoclaim Freebitco.in
// @author BITCOINCHANNEL
// @match https://freebitco.in/?op=home
// @match https://freebitco.in/?op=home#
// @match https://freebitco.in/
// @require
http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant none
// ==/UserScript==

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


function resetTimeout() {
clearTimeout(timeout);
timeout = setTimeout("location.reload(true);",3630000);
}
var count_min = 1;
$(document).ready(function(){
console.log("Status: Page loaded.");

setTimeout(function(){
$('#play_without_captchas_button').click();
console.log("Status: Button play without captchas clicked.");
}, random(2000,4000));

setInterval(function(){
console.log("Status: Elapsed time " + count_min + " minutes");
count_min = count_min + 1;
}, 60000);

setTimeout(function(){
$('#free_play_form_button').click();
console.log("Status: Button ROLL clicked.");
}, random(2000,4000));

setInterval(function(){
console.log("Status: Elapsed time " + count_min + " minutes");
count_min = count_min + 1;
}, 60000);

setTimeout(function(){
$('.close-reveal-modal')[0].click();
console.log("Status: Button CLOSE POPUP clicked.");
}, random(12000,18000));

setInterval(function(){
$('#free_play_form_button').click();
console.log("Status: Button ROLL clicked again.");
}, random(3605000,3615000));
});

function random(min,max){
return min + (max - min) * Math.random();
}

You might also like