0% found this document useful (0 votes)
1K views2 pages

Free BTC

This document contains code for an automated Bitcoin betting script. It sets variables like the minimum stake, number of rounds, and loss amount threshold. The script clicks the "bet" button, checks the results, updates the stake amount, and repeats until it reaches the round limit or a loss threshold is passed. It logs the results of each round to the console.

Uploaded by

Carlos Núñez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views2 pages

Free BTC

This document contains code for an automated Bitcoin betting script. It sets variables like the minimum stake, number of rounds, and loss amount threshold. The script clicks the "bet" button, checks the results, updates the stake amount, and repeats until it reaches the round limit or a loss threshold is passed. It logs the results of each round to the console.

Uploaded by

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

FreeBitcoin Script 2019 - Autonomo Enterprise Channel.

txt
var minstake = 0.00000001; // valor base
//-----------------------------------------
var autorounds = 100; // n° de rolls
//======================================================
// if (PROFIT > profit_max) {
// error_title = "Maximum profit exceeded";
// error_info = "Maximum profit: " + number_format(profit_max,
devise_decimal);
// error_value = "Maximum profit exceeded - Maximum profit: " +
number_format(profit_max, devise_decimal);
// error = true;
// } SCRIPT BY AUTONOMOENTERPRISE - UNTIL 2019
// else if (amount > balance) {
// error_title = "Bet amount";
// error_info = "Maximum bet: " + number_format(balance, devise_decimal);
// error_value = "Bet amount - Maximum bet: " + number_format(balance,
devise_decimal);
// error = true;
// }
var handbrake = 0.0001; // valor lose pause game
var autoruns = 1;
// else if (amount > bet_max) {
// error_title = "Bet amount";
// error_info = "Maximum bet: " + number_format(bet_max, devise_decimal);
// error_value = "Bet amount - Maximum bet: " + number_format(bet_max,
devise_decimal);
// error = true;
// }
// else if (amount < bet_min) {
// error_title = "Bet amount";
// error_info = "Minimum bet: " + number_format(bet_min, devise_decimal);
// error_value = "Bet amount - Minimum bet: " + number_format(bet_min,
devise_decimal);
// error = true;
// }
function playnow() {
if (autoruns > autorounds ) { console.log('Limit reached'); return; }
document.getElementById('double_your_btc_bet_hi_button').click();
setTimeout(checkresults, 123);
return;}
function checkresults() {
if (document.getElementById('double_your_btc_bet_hi_button').disabled ===
true) {
setTimeout(checkresults, 246);
return;
}
var stake = document.getElementById('double_your_btc_stake').value * 1;
var won = document.getElementById('double_your_btc_bet_win').innerHTML;
Página 1
FreeBitcoin Script 2019 - Autonomo Enterprise Channel.txt
if (won.match(/(\d+\.\d+)/) !== null) { won = won.match(/(\d+\.\d+)/)[0]; }
else { won = false; }
var lost = document.getElementById('double_your_btc_bet_lose').innerHTML;
if (lost.match(/(\d+\.\d+)/) !== null) { lost = lost.match(/(\d+\.\d+)/)[0];
} else { lost = false; }
if (won && !lost) { stake = minstake; console.log('Bet #' + autoruns + '/' +
autorounds + ': Won ' + won + ' Stake: ' + stake.toFixed(8)); }
if (lost && !won) { stake = lost * 2.0; console.log('Bet #' + autoruns + '/'
+ autorounds + ': Lost ' + lost + ' Stake: ' + stake.toFixed(8)); }
if (!won && !lost) { console.log('Something went wrong'); return; }
document.getElementById('double_your_btc_stake').value = stake.toFixed(8);
autoruns++;
if (stake >= handbrake) {
document.getElementById('handbrakealert').play();
console.log('Handbrake triggered! Execute playnow() to override');
return;
}
setTimeout(playnow, 111);
return;

}playnow()

Página 2

You might also like