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

Freebitcoin Script September

This document defines JavaScript functions and variables for automating bets on a gambling site. It tracks the number of rolls played, losses, and a counter list. It generates a random client seed, makes random bets within limits, and checks the balance after each bet to see if a profit threshold is reached to stop the automated betting. The key functions are for generating random numbers, making bets by clicking buttons, tracking wins/losses, and increasing the bet amounts after multiple losses according to the defined limits and amounts.

Uploaded by

derra pradipta
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)
81 views2 pages

Freebitcoin Script September

This document defines JavaScript functions and variables for automating bets on a gambling site. It tracks the number of rolls played, losses, and a counter list. It generates a random client seed, makes random bets within limits, and checks the balance after each bet to see if a profit threshold is reached to stop the automated betting. The key functions are for generating random numbers, making bets by clicking buttons, tracking wins/losses, and increasing the bet amounts after multiple losses according to the defined limits and amounts.

Uploaded by

derra pradipta
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

var rolls_played = 0;

var skip = 1;
var no_of_loss = 0 ;
var counter_list = [];
var limit = 5;
var uppper = limit + 10;
var balance_one = document.getElementById("balance2").innerHTML.substr(0, 10);
var bet_amount_list = [0.00000010, 0.00000010, 0.00000010, 0.00000020, 0.00000020,
0.00000020, 0.00000040, 0.00000060, 0.00000080, 0.00000100];
document.getElementById("double_your_btc_stake").value = 0.00000001;
document.getElementById("double_your_btc_payout_multiplier").value = 4 ;

function client_seed() {
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

for (var i = 0; i < 128; i++){


text += possible.charAt(Math.floor(Math.random() * possible.length));
}

document.getElementById("next_client_seed").value = text;
}

function Random_integer(min, max) {


return Math.floor(Math.random() * (max - min + 1)) + min;
}

function Bet() {
document.getElementById('double_your_btc_bet_lo_button').click();
}

function play() {

if (document.getElementById('double_your_btc_bet_hi_button').disabled ===
false) {

won = document.getElementById('double_your_btc_bet_win').innerHTML;

if (won.match(/(\d+\.\d+)/) !== null) {


counter_list.push(1);
no_of_loss = 0 ;
document.getElementById("double_your_btc_stake").value = 0.00000001;
}

lost = document.getElementById('double_your_btc_bet_lose').innerHTML;

if (lost.match(/(\d+\.\d+)/) !== null) {


counter_list.push(0);
no_of_loss += 1 ;
console.log(no_of_loss);

if (no_of_loss<limit){
document.getElementById("double_your_btc_stake").value =
0.00000001;
}

else if (no_of_loss>=limit && no_of_loss<uppper){


document.getElementById("double_your_btc_stake").value =
bet_amount_list[no_of_loss-limit];
}
else {
document.getElementById("double_your_btc_stake").value =
0.00000001;
no_of_loss = 0 ;
}
}

client_seed();

Bet();

balance_two = document.getElementById("balance2").innerHTML.substr(0, 10);

profit = balance_two - balance_one ;

if (profit <= -0.00040000 || profit>=0.00030000){


clearInterval(auto_bet);
console.log("Stop");
console.log(counter_list.toString());
}

}
}

var auto_bet = setInterval(play, 700);

You might also like