Sunteți pe pagina 1din 2

// GEEKY BITCOIN GAMBLER

//Martingale script
//Double bet on every lose ... base bet on win

//The number of rolls after which the script will stop


var number_of_rolls_limit = 1000;

//Change to 'true' if you want to stop after exceeding a certain profit


var profit_limit = false;
var profit_limit_value = 0.00000001;

//Change to 'true' if you want to stop after exceeding a certain loss


var loss_limit = false;
var loss_limit_value = 0.00000001;

//Base bet
var base_bet = 0.00000001;

//Do not change anything below this ... if you do, it will not be martingale
anymore ...
var payout = 2;
var on_lose_multiply_by = 2;
var number_of_rolls = 0;
var balance_one = document.getElementById("balance2").innerHTML.substr(0, 10);
document.getElementById("double_your_btc_stake").value = base_bet;
document.getElementById("double_your_btc_payout_multiplier").value = payout ;

//Change client seed after every roll

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

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


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

document.getElementById("next_client_seed").value = text;
}

//Generate random integer between two limits

function Random_integer(min, max) {


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

//Bet Randomly

function Bet() {
if (Random_integer(1, 10000)%2==0) {
document.getElementById('double_your_btc_bet_hi_button').click();
}
else {
document.getElementById('double_your_btc_bet_lo_button').click();
}
}
//Stop the script

function stop(){
clearInterval(martingale);
}

//Initiate the script once

function play() {

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

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

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


document.getElementById("double_your_btc_stake").value = base_bet;
}

lost = document.getElementById('double_your_btc_bet_lose').innerHTML;

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


current_bet_amount =
document.getElementById("double_your_btc_stake").value;
document.getElementById("double_your_btc_stake").value =
current_bet_amount*on_lose_multiply_by;
}

client_seed();

Bet();

number_of_rolls += 1;
balance_two = document.getElementById("balance2").innerHTML.substr(0, 10);
profit = balance_two - balance_one ;
loss = balance_one-balance_two;

if (profit_limit == true && profit >= profit_limit_value){


stop();
console.log("profit limit reached");
}

if (loss_limit == true && loss >= loss_limit_value){


stop();
console.log("loss limit reached");
}

if (number_of_rolls >= number_of_rolls_limit ){


stop();
console.log("rolls limit reached");
}
}
}

//Initiate the script after every 700 milliseconds

var martingale = setInterval(play, 700);

S-ar putea să vă placă și