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

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
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)
294 views2 pages

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
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
  • Empty: This page appears largely empty, possibly containing a syntax character or leftover element.
  • Autoclaim Script: Presents a user script for automating claims with initial configurations and functionality.

// ==UserScript==

// @name [Link] Autoclaim + Force Refresh Page


// @namespace By [Link]/c/BITCOINCHANNEL
// @version 0.1.3
// @description Autoclaim [Link]
// @author BITCOINCHANNEL
// @match [Link]
// @match [Link]
// @match [Link]
// @require
[Link]
// @grant none
// ==/UserScript==

var timeout = setTimeout("[Link](true);",3630000);


function resetTimeout() {
clearTimeout(timeout);
timeout = setTimeout("[Link](true);",3630000);
}
var count_min = 1;
$(document).ready(function(){
[Link]("Status: Page loaded.");

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

setInterval(function(){
[Link]("Status: Elapsed time " + count_min + " minutes");
count_min = count_min + 1;
}, 60000);

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

setInterval(function(){
[Link]("Status: Elapsed time " + count_min + " minutes");
count_min = count_min + 1;
}, 60000);

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

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

function random(min,max){
return min + (max - min) * [Link]();
}

You might also like