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

Script 2

The document contains JavaScript code for an automated betting script. It initializes variables to track bets, wins/losses, balances and bet amounts. Functions are defined to place bets, track results and adjust the bet based on losses. The code runs on an interval to continuously place bets.

Uploaded by

josesego91a
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)
38 views2 pages

Script 2

The document contains JavaScript code for an automated betting script. It initializes variables to track bets, wins/losses, balances and bet amounts. Functions are defined to place bets, track results and adjust the bet based on losses. The code runs on an interval to continuously place bets.

Uploaded by

josesego91a
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

var rolls_played = 0;

var skip = 0;
var no_of_loss = 0;
var counter_list = [];
var limit = 17;
var balance_one = [Link]("balance2").[Link](0, 10);
var bet_amount = 0.098785262;
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];
[Link]("double_your_btc_stake").value = bet_amount;
[Link]("double_your_btc_payout_multiplier").value = 2.5;

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

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


text += [Link]([Link]([Link]() * [Link]));
}

[Link]("next_client_seed").value = text;
}

function Random_integer(min, max) {


return [Link]([Link]() * (max - min + 1)) + min;
}

function Bet() {
[Link]('double_your_btc_bet_lo_button').click();
}

function play() {
if ([Link]('double_your_btc_bet_hi_button').disabled === false)
{
if (skip == 0) {
won = [Link]('double_your_btc_bet_win').innerHTML;

if ([Link](/(\d+\.\d+)/) !== null) {


counter_list.push(1);
no_of_loss = 0;
[Link]("double_your_btc_stake").value = 0.00000001;
}

lost = [Link]('double_your_btc_bet_lose').innerHTML;

if ([Link](/(\d+\.\d+)/) !== null) {


counter_list.push(0);
no_of_loss += 1;

if (no_of_loss > limit) {


[Link]("double_your_btc_stake").value =
bet_amount_list[no_of_loss - 1];
skip = 1;
}
}
} else {
skip = 0;
}
Bet();
}

rolls_played += 1;

if (rolls_played % 100 === 0) {


[Link]("Rolls played: " + rolls_played);
[Link]("Balance: " + [Link]("balance2").innerHTML);
[Link]("Counter list: " + counter_list);
}
}

setInterval(play, 1000);

You might also like