I think most people are familiar with the Martingale betting system of doubling after a loss and going back to the initial betting value after a winning.
So, one could manually do it over freebitco.in but that would take a LONG time. As such, I have implemented a script that automates the process and do it endlessly.
Here it goes:
while(true) {
var macro1;
macro1 = "CODE:";
macro1 += "SET !EXTRACT_TEST_POPUP NO" + "\n";
macro1 += "TAG POS=1 TYPE=INPUT:SUBMIT ATTR=ID:double_your_btc_bet_hi_button" + "\n";
macro1 += "WAIT SECONDS=1" + "\n";
macro1 += "SET !EXTRACT NULL" + "\n";
macro1 += "TAG POS=1 TYPE=DIV ATTR=ID:double_your_btc_result EXTRACT=TXT" + "\n";
iimPlay(macro1);
var s = iimGetLastExtract();
var extract = s.charAt(4);
var macro2;
macro2 = "CODE:";
macro2 += "TAG POS=1 TYPE=A ATTR=ID:double_your_btc_2x" + "\n";
var macro3;
macro3 = "CODE:";
macro3 += "TAG POS=1 TYPE=A ATTR=ID:double_your_btc_min" + "\n";
if(extract == "l") {
iimPlay(macro2);
}
if(extract == "w") {
iimPlay(macro3);
}
}
And here is a small tutorial on how to use it:
1) Install Firefox and the add-on iMacros (
https://addons.mozilla.org/en-US/firefox/addon/imacros-for-firefox/)
2) Copy the code above to a file called "martingale.js" /user/iMacros/Macros
3) Open firefox, go to
http://freebitco.in/ and over "MULTIPLY BTC"
4) Open up iMacros interface by clicking F8 or on its icon
5) Select "martingale.js" and play it
There you go, you are automatically playing using the Martingale system, without a sweat and very fast!
However, I for those unaware I should warn that this betting system is not perfect! It gives you some advantage, but you might still lose all your coins. However, the more coins you have, the better your chances (but also the greater your losses). So play carefully.
But let's check something quickly. Let's say you have
BTC0.00010000. On the martingale, your chance of being brankrupt is that of losing all rounds consecutively, until you have no more BTCs. So, let's calculate that. The chance of winning a round is 4750/10000 (47.5%)
So, how many rounds can you afford to lose with
BTC0.00010000 betting
BTC0.00000001 per round and using martingale? (what the script does)
https://i.imgur.com/RpLeSQs.pngWhich gives approximately a total of m = 12.8
That is, you would have to lose 12 consecutive rounds to go bankrupt with that initial money. As the chance of losing is 1-0.475 = 0.525, we have:
0.525^12=0.000438
In English, the chance of going bankrupt is 0.0438%
But don't be fooled, without infinite money you most likely will (some time) lose.
It's not a perfect system, but hey, it's better than manually trying to do something even more naive. Might give some advantage.
Hope I could help those who were playing blindly until now.
I guess this is better than nothing, and was quite some struggle for me to come up with, but worthy, I guess.
If I may have helped users somehow, I wouldn't deny a little something for the efforts
: 1DsFP2eVUg8rv1p9PJVDHbStZB24KTJ7mR