0% found this document useful (0 votes)
938 views3 pages

Free Bitcoin Script

The document contains code for an automated betting script. It defines variables for the minimum stake, number of rounds, and other values. It includes functions for playing rounds automatically and checking results, increasing the stake if lost and resetting to minimum if won. It will trigger a "handbrake" if the stake reaches a certain value, and calls the main playnow() function to start the automated betting rounds.

Uploaded by

Thanh Nguyen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
938 views3 pages

Free Bitcoin Script

The document contains code for an automated betting script. It defines variables for the minimum stake, number of rounds, and other values. It includes functions for playing rounds automatically and checking results, increasing the stake if lost and resetting to minimum if won. It will trigger a "handbrake" if the stake reaches a certain value, and calls the main playnow() function to start the automated betting rounds.

Uploaded by

Thanh Nguyen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

var minstake = 0.

00000001; // valor base

//-----------------------------------------

var autorounds = 111; // 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 j4y201 - 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 = 1.00000000; // 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 ) { [Link]('Limit reached'); return; }

[Link]('double_your_btc_bet_hi_button').click();

setTimeout(checkresults, 222);

return;}

function checkresults() {

if ([Link]('double_your_btc_bet_hi_button').disabled === true) {

setTimeout(checkresults, 444);

return;

var stake = [Link]('double_your_btc_stake').value * 1;

var won = [Link]('double_your_btc_bet_win').innerHTML;

if ([Link](/(\d+\.\d+)/) !== null) { won = [Link](/(\d+\.\d+)/)[0]; } else { won = false; }

var lost = [Link]('double_your_btc_bet_lose').innerHTML;

if ([Link](/(\d+\.\d+)/) !== null) { lost = [Link](/(\d+\.\d+)/)[0]; } else { lost = false; }

if (won && !lost) { stake = minstake; [Link]('Bet #' + autoruns + '/' + autorounds + ': Won ' + won + '
Stake: ' + [Link](8)); }

if (lost && !won) { stake = lost * 2.1; [Link]('Bet #' + autoruns + '/' + autorounds + ': Lost ' + lost + '
Stake: ' + [Link](8)); }

if (!won && !lost) { [Link]('Something went wrong'); return; }


[Link]('double_your_btc_stake').value = [Link](8);

autoruns++;

if (stake >= handbrake) {

[Link]('handbrakealert').play();

[Link]('Handbrake triggered! Execute playnow() to override');

return;

setTimeout(playnow, 333);

return;

}playnow()

You might also like