Freebitcoin Multiply Tactics

 Tactics

Today we come to speak about tactics at Multiply game in freebitcoin


Freebitcoin team propose this multiply game saying it's Provably Fair. This should mean that numbers output is completely random. I didn't demostrate yet, but looks like this statement is false.

After some years playing, it happens that more you play, more chances is that you accumulate consecutive losts.

Most of the tactics in 50/50, red/black, pair/even, or high/low, are generally based on statistic. Saying it's really hard to accumulate N consecutive lost. Now how Big could be N, depends on how many hands you play. At casino, there is a minimum bet, generally 1 usd, and a max bet, generally 1000 timies the minimum bet. It means you can cover 10 consecutive lost, with a martingale system.

But, on freebitcoin website, minimum bet is 1 sat. And max bet is 10 BTC. So there is a 29 consecutive lost limit if you put 10 BTC. And this can be a disavantage of freebitcoin website. There is a p=1.2e^-9 to lose 20 times...

I don't suggest to play high value MAX_ROLLS_AT_MULTIPLY (>80) with a MANUAL configuration.
 
So, here some config of the script that are good:

If you have 20k sat, this win 10000 sat avg por day, it's avg risk.
var MULTIPLY = true;
var MAX_ROLLS_AT_MULTIPLY = 100000;
var HOURS_BETWEEN_MULTIPLY = 36; 
var BAS_BET = 0.00000128;
var MAX_BET = 0.00004096;
var MARTINGALE_AUTO = true; 

But you have to wait and be patience. It plays every day and half
If you play often, you'll begin to lose.

If you have 20k sat, this win 500 sat avg por day, and it's safer.
var MULTIPLY = true;
var MAX_ROLLS_AT_MULTIPLY = 1000;
var HOURS_BETWEEN_MULTIPLY = 24; 
var BAS_BET = 0.00000001;
var MAX_BET = 0.00004096;
var MARTINGALE_AUTO = true; 

It will stop on 1000 auto bets 

Popular Posts