0% found this document useful (0 votes)
180 views1 page

Free Bit Coin

The document contains code to track the rounds, value, and outcome of bets placed on a doubling game. It increments the round number and calculates the new total value based on wins and losses, resetting after a set number of rounds.

Uploaded by

hudson davi
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)
180 views1 page

Free Bit Coin

The document contains code to track the rounds, value, and outcome of bets placed on a doubling game. It increments the round number and calculates the new total value based on wins and losses, resetting after a set number of rounds.

Uploaded by

hudson davi
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/ 1

var rodada = 1;

var valorInicial = 0.00000001;


var valorAtual = 0.00000001;
var valorTotal = 0.00000001;
var botao = $('#double_your_btc_bet_lo_button');
$('#double_your_btc_payout_multiplier').val(6);

$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("lose")')){
rodada = rodada + 1;
if(rodada <= 8){
valorTotal = (parseFloat(valorInicial)).toFixed(8);
$('#double_your_btc_stake').val(valorTotal);
}
else if(rodada > 8 && rodada <= 15){
if(rodada == 9){
valorAtual = $('#double_your_btc_stake').val();
valorTotal = (parseFloat(valorInicial) +
parseFloat(valorAtual)).toFixed(8);
$('#double_your_btc_stake').val(valorTotal);
}
}
else{
rodada = 1;
valorTotal = (parseFloat(valorInicial)).toFixed(8);
$('#double_your_btc_stake').val(valorTotal);
}
console.log(rodada)
setTimeout(function(){
botao.trigger('click');
}, 1000);
}
});

$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget).is(':contains("win")')){
rodada = 1;
valorTotal = (parseFloat(valorInicial)).toFixed(8);
$('#double_your_btc_stake').val(valorTotal);
console.log(rodada)
setTimeout(function(){
botao.trigger('click');
}, 1000);
}
});

console.log(rodada)
botao.trigger('click');

You might also like