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

Satoshibox Ligit

This document contains JavaScript code for automatically betting on a dice game. It checks the profit from the last bet, and if profit is positive it will bet the base amount again, otherwise it increases the bet by a multiplier. It sets timeouts to rerun the betting logic every 2 seconds. It also updates some text on the page like chance, payout and includes a lucrando message.

Uploaded by

Bitcoin for all
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)
384 views2 pages

Satoshibox Ligit

This document contains JavaScript code for automatically betting on a dice game. It checks the profit from the last bet, and if profit is positive it will bet the base amount again, otherwise it increases the bet by a multiplier. It sets timeouts to rerun the betting logic every 2 seconds. It also updates some text on the page like chance, payout and includes a lucrando message.

Uploaded by

Bitcoin for all
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

$('<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// 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 > 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