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

Biit Sler V50

The document contains code for handling bets and outcomes like wins and losses. It includes JavaScript code to get stake amounts, wins, losses and other bet values and conditions to handle different results.

Uploaded by

Michal Skalník
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)
28 views1 page

Biit Sler V50

The document contains code for handling bets and outcomes like wins and losses. It includes JavaScript code to get stake amounts, wins, losses and other bet values and conditions to handle different results.

Uploaded by

Michal Skalník
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

// else if (amount > bet_max) {

// error_title = "Bet amount";


ent.getElementById('double_your_btc_stake').value * 1;
var won = document.getElementById('double_your_btc_bet_win').innerHTML;
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)
document.getElementById('handbrakealert').play();
var lost = document.getElementById('double_your_btc_bet_lose').innerHTML;
// else if (amount > bet_max) {
// error_title = "Bet amount";
ent.getElementById('double_your_btc_stake').value * 1;
var won = document.getElementById('double_your_btc_bet_win').innerHTML;
if (won.match(/(\d+\.\d+)/) !== null) { won = won.match(/(\d+\.\d+)/)[0]; }
else { won = false; }
var lost = document.getElementByIdt.getElementById

You might also like