0% found this document useful (0 votes)
39 views

FreeBitco - in Script

The document discusses getting a Bitcoin wallet and provides a script to use a martingale gambling system on a free Bitcoin site to earn more coins by doubling bets after losses until a win occurs.

Uploaded by

Md Sohag
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views

FreeBitco - in Script

The document discusses getting a Bitcoin wallet and provides a script to use a martingale gambling system on a free Bitcoin site to earn more coins by doubling bets after losses until a win occurs.

Uploaded by

Md Sohag
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

First and foremost your going to want to get your self a Bitcoin wallet,

if you don’t already have one then you can get one here :
https://bitcoin.org/en/choose-your-wallet
Any of the wallets will do the job as you will simply be receiving Bitcoins!

This is basically a script for Chrome's "Inspect Element" (CTRL + SHIFT + J)


Console that uses Martingale Gambling System on a free bitcoin site (FreeBitco.in).

> Sign up Here <

---> https://btc.do/FreeBitcoin <---

First roll for your free initial coins, Do this by solving the CAPTCHA under the
"FREE BTC" Tab.
I'd advise you do this as many times as you can because this could be patched soon.
Script is here, please copy and paste what is below:

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();

You might also like