Make some BTC

Luminesca

Member
Reputation
0
Yes, it's been copy and pasted around but I actually received it from the actual source.

This is basically a script for Chrome's "Inspect Element" Console that uses Martingale Gambling System on a free bitcoin site that allows you to gamble your coins.

Sign up Here ----> http://bit.ly/1obvbaz <--- (don't have to use the referral)

First roll for your free initial coins, Do this by solving the CAPTCHA under the "Free Play" Tab. I'd advise you do this as many times as you can to back the method should the bet grow exponentially. Sadly you can only do it every hour.

Code:
bconfig = {
maxBet: 0.00000256,
wait: 700,
toggleHilo:false
};

hilo = 'lo';
multiplier = 1;
rollDice = function() {

if ($('#double_your_btc_bet_lose').html() !== '') {
$('#double_your_btc_2x').click();
multiplier++;
if(bconfig.toggleHilo)toggleHiLo();
} else {
$('#double_your_btc_min').click();
multiplier = 1;
}

if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
$('#double_your_btc_min').click();
}

$('#double_your_btc_bet_' + hilo + '_button').click();

setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 100));
};

toggleHiLo = function() {
if (hilo === 'lo') {
hilo = 'lo';
} else {
hilo = 'lo';
}
};

rollDice();

Literally copy and paste the script into the Console like so:

http://i.imgur.com/oEgdbm5.png


Make sure that you're on the multiply BTC page at the time and it will start!
 
I'm pretty sure this method works but wouldn't be worth the effort.

Anyways, thanks for the share.
 
@Beats I see your still around.

Yeah, I tried this before, without much success.
As Beats stated, its not worth the effort.
 
Supreme Leader said:
@Beats I see your still around.

Yeah, I tried this before, without much success.
As Beats stated, its not worth the effort.

Hmmm who are you? I do not remember.

PM me :p
 
Back
Top