33% found this document useful (6 votes)
2K views2 pages

Bitsler Script No. 1

The document contains JavaScript code for automating bets on a dice game. It checks bet amounts against profit, balance, and bet limits and sets error messages. It then starts an automated betting loop that places bets every 2 seconds, increasing the bet amount if the previous bet lost and keeping it the same if it won. It also updates the user interface during this loop.

Uploaded by

Balaji Piramala
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
33% found this document useful (6 votes)
2K views2 pages

Bitsler Script No. 1

The document contains JavaScript code for automating bets on a dice game. It checks bet amounts against profit, balance, and bet limits and sets error messages. It then starts an automated betting loop that places bets every 2 seconds, increasing the bet amount if the previous bet lost and keeping it the same if it won. It also updates the user interface during this loop.

Uploaded by

Balaji Piramala
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

// 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;
// }
// 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;
// }
var base_bet= parseFloat($("#amount")[0].value);var mult=1.6;var
base=base_bet;var cont=0;var stop=true;$('#btn-bet-
dice').trigger('click');stop=false;$('<p><strong id="lucro" style="font-
size:16px;color:#00C0FF"></strong> </p>').insertAfter('#btn-bet-dice');;
// 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;
// }
// 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;
// }
$('<p><strong id="lucro" style="font-size:16px;color:#00C0FF"></strong>
</p>').insertAfter('#btn-bet-dice');;$('#history-my-bets-dice').unbind();$
('#history-my-bets-dice').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget) ){if(!stop){if(cont%2==1){setTimeout(function()
{console.clear();
profit=parseFloat($('#history-my-bets-dice tr')
[0].children[7].children[0].innerHTML);if(profit>0){stop=false;base=base_bet;$
('#amount').val(base.toString());$('#btn-bet-dice').trigger('click');}
else{base=base*mult;$('#btn-bet-dice').trigger('click');$
('#amount').val(base.toString());}$("#game-input")[0].value="33.00";$('#btn-bet-
dice').trigger('click');$('#amount').val(base.toString());$("#updated_condition")
[0].innerHTML='&lt;Lucrando <i class="fa fa-exchange hidden-xs"></i>';$("#editable-
payout")[0].innerHTML='Billing <i class="hidden-xs fa fa-pencil" style="font-
size:12px"></i>';$("#editable-chance")[0].innerHTML='$$$$$$$ <i class="fa fa-pencil
hidden-
xs"></i>';},2000);}cont=cont+1;}}});console.clear();window.onbeforeunload=function(
){return"Disabled Auto-Refresh"};

You might also like