0% found this document useful (0 votes)
276 views4 pages

Bitsler Script No 1

The document contains JavaScript code for validating betting amounts on a gambling site. It checks if the profit, amount, balance, maximum bet, and minimum bet are valid, and sets error messages if not. It then contains code to automatically place bets repeatedly, increasing the bet amount if winning and keeping it the same if losing, up to a certain point.

Uploaded by

krasniqi
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)
276 views4 pages

Bitsler Script No 1

The document contains JavaScript code for validating betting amounts on a gambling site. It checks if the profit, amount, balance, maximum bet, and minimum bet are valid, and sets error messages if not. It then contains code to automatically place bets repeatedly, increasing the bet amount if winning and keeping it the same if losing, up to a certain point.

Uploaded by

krasniqi
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/ 4

// 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

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