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

Script

The document appears to contain code for an automated betting script. It defines variables for the minimum stake, number of rounds, and other parameters. It also contains functions for playing bets, checking results, and continuing the automated process. The overall purpose seems to be automatically placing bets and tracking the outcomes in an iterative process.

Uploaded by

Min Than Tun
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)
169 views2 pages

Script

The document appears to contain code for an automated betting script. It defines variables for the minimum stake, number of rounds, and other parameters. It also contains functions for playing bets, checking results, and continuing the automated process. The overall purpose seems to be automatically placing bets and tracking the outcomes in an iterative process.

Uploaded by

Min Than Tun
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

<<Remeber to turn off your antivirus>>

var minstake = 0.00000100; // valor base


//-----------------------------------------
var autorounds = 99; // 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;
// }
// 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.0000000; // 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, 1000);
return;}
function checkresults() {
if (document.getElementById('double_your_btc_bet_hi_button').disabled ===
true) {
setTimeout(checkresults, 1000);
return;
}
var stake = document.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) { stake = lost * 2.1; 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, 1000);
return;

}playnow()

� 2017 Exsom Group, LLC. All Rights Reserved.


Terms of Service � Privacy Policy � DMCA � System Status

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy