Script B

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 3

// cRc-Bitcoin maxBet det�ngase al perder el m�ximo que desee

// puedes cambiar cualquier opci�n ... bajo tu propio riesgo

var rolls_played = 0;
var ship = 1;
var no_of_loss = 0;
var counter_list = [];
l�mite de var = 21;
var balance_one = document.getElementById ("balance2"). innerHTML.substr (0, 10);
var bet_amount_list = [0.00000001, 0.00000002, 0.00000002, 0.00000003, 0.00000005,
0.00000008, 0.00000011, 0.00000017, 0.00000026, 0.00000038, 0.00000058, 0.00000086,
0.00000130, 0.00000195, 0.00000292, 0.00000438, 0.00000657, 0.00000985, 0.00002000;
// cambia esto por mayor o menor
document.getElementById ("double_your_btc_stake"). value = 0.00000001;
document.getElementById ("double_your_btc_payout_multiplier"). valor = 4;

function client_seed () {
var text = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

para (var i = 0; i <128; i ++) {


text + = possible.charAt (Math.floor (Math.random () * possible.length));
}

document.getElementById ("next_client_seed"). valor = texto;


}

function Random_integer (min, max) {


return Math.floor (Math.random () * (max - min + 1)) + min;
}

funci�n Bet () {
document.getElementById ('double_your_btc_bet_lo_button'). click ();
}

function play () {

if (document.getElementById ('double_your_btc_bet_hi_button'). disabled ===


false) {

si (saltar == 0) {

won = document.getElementById ('double_your_btc_bet_win'). innerHTML;

if (won.match (/ (\ d + \. \ d +) /)! == null) {


counter_list.push (1);
no_of_loss = 0;
document.getElementById ("double_your_btc_stake"). value =
0.00000001;
}

perdido = document.getElementById ('double_your_btc_bet_lose').


innerHTML;

if (lost.match (/ (\ d + \. \ d +) /)! == null) {


counter_list.push (0);
no_de_p�rdida + = 1;
if (no_of_loss> l�mite) {
document.getElementById ("double_your_btc_stake"). value =
0.00000001;
saltar = 1;
balance_one = document.getElementById ("balance2").
innerHTML.substr (0, 10);
no_of_loss = 0;
console.log ("Inicio");
console.log (document.getElementById ("balance2").
innerHTML.substr (0, 10));
}
dem�s {
document.getElementById ("double_your_btc_stake"). value =
0.00000001;
}
}

semilla_cliente ();

Apostar ();

dem�s {

won = document.getElementById ('double_your_btc_bet_win'). innerHTML;

if (won.match (/ (\ d + \. \ d +) /)! == null) {


counter_list.push (1);
no_of_loss = 0;
document.getElementById ("double_your_btc_stake"). value =
0.00000001;
}

perdido = document.getElementById ('double_your_btc_bet_lose').


innerHTML;

if (lost.match (/ (\ d + \. \ d +) /)! == null) {


counter_list.push (0);
no_de_p�rdida + = 1;

if (no_of_loss <= l�mite) {


document.getElementById ("double_your_btc_stake"). value =
bet_amount_list [no_of_loss];
}
dem�s {
document.getElementById ("double_your_btc_stake"). value =
0.00000001;
console.log ("P�rdida");
no_of_loss = 0;
}
}

semilla_cliente ();

Apostar ();

balance_two = document.getElementById ("balance2"). innerHTML.substr


(0, 10);

beneficio = balance_dos - balance_uno;

if (beneficio> = 0,00002500) {
saltar = 0;
no_of_loss = 0;
console.log ("Beneficio");
console.log (document.getElementById ("balance2"). innerHTML.substr
(0, 10));
}

si (beneficio <= -0.00010000) {


clearInterval (auto_bet);
console.log ("Detener");
console.log (counter_list.toString ());
}

}
}
}

var auto_bet = setInterval (jugar, 700); // juega m�s r�pido

You might also like