[-]
FORUM NEWS

Check out TOR COIN! First blackhat coin, safe and reliable!




Post Reply 
 
Thread Rating:
  • 8 Vote(s) - 3.25 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Share Post: Facebook Twitter Reddit StumbleUpon
freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
30-01-2017, 01:09 AM
Post: #31
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(28-01-2017 11:18 PM)tetkapersa Wrote: You are not allowed to view links. Register or Login to view.Updated to version 3.0
Check first page for info and code.

ENJOY and remember not to blame anyone its Gamble bot!

For testing accounts feel free to make them via my ref - You are not allowed to view links. Register or Login to view. so i can get more satoshi for future updating purposes Smile

Uncaught SyntaxError: Unexpected token . Why i got these error? w

kelvinfaris, Member of Bitcoin Black Hat since Jan 2017.
Find all posts by this user
Like Post Quote this message in a reply
Advertisement
30-01-2017, 02:12 AM
Post: #32
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(30-01-2017 01:09 AM)kelvinfaris Wrote: You are not allowed to view links. Register or Login to view.
(28-01-2017 11:18 PM)tetkapersa Wrote: You are not allowed to view links. Register or Login to view.Updated to version 3.0
Check first page for info and code.

ENJOY and remember not to blame anyone its Gamble bot!

For testing accounts feel free to make them via my ref - You are not allowed to view links. Register or Login to view. so i can get more satoshi for future updating purposes Smile

Uncaught SyntaxError: Unexpected token . Why i got these error? w

Because after 1 hour page redirects to free roll you must use free roll first and then use the bot in the remaining 59 mins.
I think thats the issue with your error. All other errors in console before you copy paste the code there will be cleared when you paste the code.

You are not allowed to view links. Register or Login to view.
You are not allowed to view links. Register or Login to view.
Find all posts by this user
Like Post Quote this message in a reply
30-01-2017, 03:05 AM
Post: #33
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
Bot works perfectly now!
Thank you for your work mate Smile
An option that we can run the bot the whole night would be nice

Firana, Member of Bitcoin Black Hat since Jan 2017.
Find all posts by this user
Like Post Quote this message in a reply
30-01-2017, 04:51 PM
Post: #34
Thumbs Down RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
Hi,

I love the bot, Its working fine even though i lost my 12000 satoshis with updated version 3.0 where i kept maximum stake at 256 satoshis. well bot is doing what it is to do. i request/suggest that bet is not only on one side i.e bot is betting only on Bet Low, why not try alternate one time Betlow and another time Bethigh.

Anway Gambling is Gambling.

TQ


Attached File(s) Thumbnail(s)
   

bitcoin0866, Member of Bitcoin Black Hat since Jan 2017.
Find all posts by this user
Like Post Quote this message in a reply
[+] 1 user Likes bitcoin0866's post
Advertisement
31-01-2017, 04:55 AM
Post: #35
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(30-01-2017 04:51 PM)bitcoin0866 Wrote: You are not allowed to view links. Register or Login to view.Hi,

I love the bot, Its working fine even though i lost my 12000 satoshis with updated version 3.0 where i kept maximum stake at 256 satoshis. well bot is doing what it is to do. i request/suggest that bet is not only on one side i.e bot is betting only on Bet Low, why not try alternate one time Betlow and another time Bethigh.

Anway Gambling is Gambling.

TQ

I'm working in a bot that first search a sequence of 3 lose or 3 win in HI BET then if sequence occur multiply bet and change to LO BET until win occur.
but don't work it right...


Code:
var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
stopPercentage = 0.001,
maxWait = 5777,
stopped = false, // debugging
stopBefore = 1; // In minutes for timer before stopping redirect on webpage
var $loButton = $('#double_your_btc_bet_lo_button'),
$2xButton = $('#double_your_btc_2x'),
$hiButton = $('#double_your_btc_bet_hi_button');
var secLose = 0;
var secWin = 0;

function multiply(){
console.log('prueba function multiply !!!');
var current = $('#double_your_btc_stake').val();
var multiply = (current * 2).toFixed(8);
$('#double_your_btc_stake').val(multiply);
}

function getRandomWait(){
console.log('prueba function getRandomWait !!!');
var wait = Math.floor(Math.random() * maxWait ) + 100;
console.log('Waiting for ' + wait + 'ms before next bet.');
return wait ;
}

function reset(){
console.log('prueba function reset !!!');
$('#double_your_btc_stake').val(startValue);
secLose = 0;
secWin = 0;
}

function startGame(){
console.log('Game started!');
reset();
$hiButton.trigger('click');
console.log('hibutton startGame function');
}

function Jugada(){
    console.log('function Jugada');
    if ($('#double_your_btc_stake').val() === startValue){
    $2xButton.trigger('click');
    }
    multiply();
    
    console.log('2xButton');
    $loButton.trigger('click');
    console.log('loButton');
    
    $('#double_your_btc_bet_lose').off();
    $('#double_your_btc_bet_win').off();
    console.log('prueba function jugada 1 !!!');
    $('#double_your_btc_bet_lose').on("DOMSubtreeModified",function(event){
        console.log('prueba function jugada lose !!!');
    if( $(event.currentTarget).is(':contains("lose")') )
    {
        console.log('No Win !!!');
        Jugada();
        console.log('prueba lose after jugada !!!');
     }
        
    });    
    
    console.log('prueba function jugada 0 !!!');
    
    $('#double_your_btc_bet_win').on("DOMSubtreeModified",function(event){
        console.log('prueba function jugada win !!!');
    if( $(event.currentTarget).is(':contains("win")') )
    {
        console.log('prueba win before reset !!!');
        reset();
        console.log('prueba win after reset !!!');
        
        return;
    
    }
    });    
    
};

console.log('prueba 1 !!!');
$('#double_your_btc_bet_lose').off();
$('#double_your_btc_bet_win').off();
console.log('prueba 2 !!!');
$('#double_your_btc_bet_lose').on("DOMSubtreeModified",function(event){
console.log('prueba lose 3 !!!');
if( $(event.currentTarget).is(':contains("lose")') )
{
    console.log('prueba lose 4 !!!');
    secLose++;
    secWin = 0;
    if (secLose == 3) {
        
        console.log('Secuencia de 3 lose');
        secLose = 0;
        secWin = 0;
        Jugada();
        console.log('prueba lose 5 !!!');
        /* return; */
          
    }

console.log('prueba lose 6 !!!');
setTimeout(function(){
$hiButton.trigger('click');
console.log('hiButton Secuencia de 3 lose');
}, getRandomWait());
} // If
});

console.log('prueba 7 !!!');

$('#double_your_btc_bet_win').on("DOMSubtreeModified",function(event){
console.log('prueba win 3 !!!');
if( $(event.currentTarget).is(':contains("win")') )
{
    console.log('prueba win 4 !!!');
    secWin++;
    secLose = 0;
    if (secWin == 3) {
        
        console.log('Secuencia de 3 Win');
        secLose = 0;
        secWin = 0;
        Jugada();
        console.log('prueba win 5 !!!');
        /* return; */
        
    }
    
console.log('prueba win 6 !!!');
setTimeout(function(){
$hiButton.trigger('click');
console.log('hiButton Secuencia de 3 win');
}, getRandomWait());
}
});startGame()
console.log('prueba fin !!!');

Attached an image of how its work .... the bot must continue run after the win to try search a new sequence and so on....

can someone help


Attached File(s) Thumbnail(s)
   

engel532, Member of Bitcoin Black Hat since Dec 2016.
Find all posts by this user
Like Post Quote this message in a reply
31-01-2017, 07:23 AM (This post was last modified: 31-01-2017 07:24 AM by tetkapersa.)
Post: #36
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
updated to version 4.0 check first page Smile
On new test accounts remember to use my ref - You are not allowed to view links. Register or Login to view. and free roll after 1hour Smile

I tried to make it work on 3 LO BET to go for 1 HI BET, but still no luck (the win % is given by website back script, so no luck there. So im still using LO BET only for the time being.

As i posted many times its gamble bot which depends from server luck. Sometimes you win sometimes you lose.

You are not allowed to view links. Register or Login to view.
You are not allowed to view links. Register or Login to view.
Find all posts by this user
Like Post Quote this message in a reply
31-01-2017, 03:51 PM
Post: #37
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(21-01-2017 06:01 AM)satoshicracker Wrote: You are not allowed to view links. Register or Login to view.
(20-01-2017 03:54 AM)tetkapersa Wrote: You are not allowed to view links. Register or Login to view.Hello people, Here is a nice simple script that i found on the net which i modified a bit so you can gain free BTC's.

Its main cause is after you used collect free bitcoins via main roll, to double them even triple them in the next 1hour untill new roll is up.

The steps are simple:
1. Register on Freebitco.in - You are not allowed to view links. Register or Login to view.

2. Download Google Chrome - You are not allowed to view links. Register or Login to view.

3. Log in on Freebitco.in via Google Chrome and press CTRL + SHIFT + J

4. Copy and paste on the Console tab the below code and press enter.
You are not allowed to view links. Register or Login to view.

Copy Paste This code
PHP Code:
//COMMAND//
//changeBet() ex: changeBet('0.00000005');

console.clear();
var 
begingbal = $('#balance').text();
var 
startbalance 0;
var 
stopAt'?';
var 
round 0;
var 
gameLost=0;
var 
gameWin=0;
var 
higherbet=0;
startbalance = $('#balance').text();
var 
startValue '0.00000001'// Don't lower the decimal point more than 4x of current balance
        
stopPercentage 0.001// In %. I wouldn't recommend going past 0.08
        
maxWait 500// In milliseconds
        
stopped false,
        
stopBefore 3// In minutes
var oldbet0.00000001;
document.getElementById("advertise_link_li").innerHTML '<a href="#" onclick="startGame()" class="advertise_link">START BOT</a>';
var 
$loButton = $('#double_your_btc_bet_lo_button'),
                
$hiButton = $('#double_your_btc_bet_hi_button');

function 
higherBet(){
console.log('Highest bet: '+higherbet);

function 
beginingBal(){
console.log('Begining Balance: '+begingbal);


function 
changeBet(bet){
startValue=bet;
}

function 
realtime(time) {
    var 
sec_num =parseInt(time10) ; // don't forget the second param
    
var hours   Math.floor(sec_num 3600);
    var 
minutes Math.floor((sec_num - (hours 3600)) / 60);
    var 
seconds sec_num - (hours 3600) - (minutes 60);

    if (
hours!=0) {hours   hours+' Hours ';}      else{hours   '';}

    if (
minutes!=0) {minutes minutes+' Minutes ';}
else{
minutes   '';}


    if (
seconds 10) {seconds seconds;}
    var 
time    'Playing time = '+hours+minutes+seconds+' Secondes';
    return 
time;
}

function 
roundnumb(){
console.clear();
    if( 
round == stopAt)
    {
    
stopGame()
    }
    else
    {
    
round round 1;
      
beginingBal();
        
console.log('Round #' round ' / ' stopAt);
    }
    
    var 
newbalance= $('#balance').text()
    var 
profit = (Number(newbalance) - Number(startbalance)).toFixed(8) ;
    
console.log('Profit:' profit ' Bitcoin')
}
//Number of round. Type stopatRound(NUMBER_OF_ROUND) to change
//function stopatRound(limitRound){
//stopAt=limitRound;
//}
function multiply(){
        var 
current = $('#double_your_btc_stake').val();
        var 
multiply = (current 2).toFixed(8); 
        $(
'#double_your_btc_stake').val(multiply);
        
console.log('Bet = ' multiply);
        if( 
higherbet multiply ){ higherbet=multiply; }
}
function 
getRandomWait(){
        var 
wait Math.floor(Math.random() * maxWait ) + 100//(Math.floor(Math.random() * 800) + 300)  ; // avant 100
        
console.log('Waiting for ' wait 'ms before next bet.');
        return 
wait ;
}
function 
startGame(limit){
document.getElementById("advertise_link_li").innerHTML '<a href="#" onclick="stopGame()" class="advertise_link">STOP BOT</a>';
starttime=(new Date()).getTime();
startValue prompt("Number of satoshi you want to bet?"'0.00000001');
oldbet=startValue;

    
round 0;
    
gameLost=0;
    
gameWin=0;
        
console.log('Game started!');
        
reset();
        
$loButton.trigger('click');
        if(
limit !== null) {
        
stopAt=limit;
        }
        else
        {
        
stopAt=-1;
        }

}
function 
stopGame(){
document.getElementById("advertise_link_li").innerHTML '<a href="#" onclick="startGame()" class="advertise_link">START BOT</a>';
        
console.log('Game will stop soon! Let me finish.');
        
stopped true;
startValue=oldbet;

}

function 
reset(){
    if( 
round 100 === && round !=0)
    {
    
startValue=(startValue 1.000).toFixed(8); //New bet after 100 round
    
console.log('Round ' round ': bet change for ' startValue);
    }
        $(
'#double_your_btc_stake').val(startValue);
}
// quick and dirty hack if you have very little bitcoins like 0.0000001
function deexponentize(number){
        return 
number 1000000;
}
function 
iHaveEnoughMoni(){
        var 
balance deexponentize(parseFloat($('#balance').text()));
        var 
current deexponentize($('#double_your_btc_stake').val());
        return ((
balance*2)/100) * (current*2) > stopPercentage/100;
}
function 
stopBeforeRedirect(){
        var 
minutes parseInt($('title').text());
        if( 
minutes stopBefore )
        {
                
console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
                
stopGame();
                return 
true;
        }
        return 
false;
}
// Unbind old shit
$('#double_your_btc_bet_lose').unbind();
$(
'#double_your_btc_bet_win').unbind();
// Loser
$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){

        if( $(
event.currentTarget).is(':contains("lose")') )
        {
        
gameLost gameLost 1;
        
roundnumb();
        
console.log('%cWin: ' gameWin ' Lost: ' gameLost'color: #00CC00');
                
endtime=(new Date()).getTime();
                var 
time=Math.floor((endtime-starttime )/1000);
                
higherBet();
        
console.log(realtime(time));
                
console.log('You LOST!');
                
multiply();
                
setTimeout(function(){
                        
$loButton.trigger('click');
                }, 
getRandomWait());
                
//$loButton.trigger('click');
        
}

}

);
// Winner
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
        if( $(
event.currentTarget).is(':contains("win")') )
        {

        
gameWin gameWin 1;
        
roundnumb();
        
console.log('%cWin: ' gameWin ' Lost: ' gameLost'color: #FF0000');
                
endtime=(new Date()).getTime();
                var 
time=Math.floor((endtime-starttime )/1000);
        
console.log(realtime(time));
                
higherBet();
            if( 
stopBeforeRedirect() )
                {
                        return;
                }
                if( 
iHaveEnoughMoni() )
                {

                        
console.log('You WON!');
                        
reset();
                        if( 
stopped )
                        {
                                
stopped false;
                                return 
false;
                        }
                }
                else
                {
                        
console.log('You WON! ');
                }
                
setTimeout(function(){
                        
$loButton.trigger('click');
                }, 
getRandomWait());
        }

}
); 

5. Click on Multiply BTC tab as shown on the image.
You are not allowed to view links. Register or Login to view.

6. Click on START BOT tab as shown on the image, then on the popup box which says 0.00000001 just press OK.
You are not allowed to view links. Register or Login to view.

And watch how you double/triple your earnings.

Proof Image
You are not allowed to view links. Register or Login to view.
(starting balance is blacked down for my own reasons)

After the free roll timer is near to 3mins the script will auto pause.

After you roll again you can restart the script by fallowing step 4.

Hope you will get many BTC's

If something is needed just reply here.

not working for me ... starts fine then drains my acct! Sad lame . what am i doing wrong?




it works for some seconds all of a sudden all my btc gone. 140,000 satoshi now 0.000000000

xx1T2, Member of Bitcoin Black Hat since Jan 2017.
Find all posts by this user
Like Post Quote this message in a reply
Advertisement
01-02-2017, 06:53 AM
Post: #38
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(31-01-2017 03:51 PM)xx1T2 Wrote: You are not allowed to view links. Register or Login to view.
(21-01-2017 06:01 AM)satoshicracker Wrote: You are not allowed to view links. Register or Login to view.
(20-01-2017 03:54 AM)tetkapersa Wrote: You are not allowed to view links. Register or Login to view.Hello people, Here is a nice simple script that i found on the net which i modified a bit so you can gain free BTC's.

Its main cause is after you used collect free bitcoins via main roll, to double them even triple them in the next 1hour untill new roll is up.

The steps are simple:
1. Register on Freebitco.in - You are not allowed to view links. Register or Login to view.

2. Download Google Chrome - You are not allowed to view links. Register or Login to view.

3. Log in on Freebitco.in via Google Chrome and press CTRL + SHIFT + J

4. Copy and paste on the Console tab the below code and press enter.
You are not allowed to view links. Register or Login to view.

Copy Paste This code
PHP Code:
//COMMAND//
//changeBet() ex: changeBet('0.00000005');

console.clear();
var 
begingbal = $('#balance').text();
var 
startbalance 0;
var 
stopAt'?';
var 
round 0;
var 
gameLost=0;
var 
gameWin=0;
var 
higherbet=0;
startbalance = $('#balance').text();
var 
startValue '0.00000001'// Don't lower the decimal point more than 4x of current balance
        
stopPercentage 0.001// In %. I wouldn't recommend going past 0.08
        
maxWait 500// In milliseconds
        
stopped false,
        
stopBefore 3// In minutes
var oldbet0.00000001;
document.getElementById("advertise_link_li").innerHTML '<a href="#" onclick="startGame()" class="advertise_link">START BOT</a>';
var 
$loButton = $('#double_your_btc_bet_lo_button'),
                
$hiButton = $('#double_your_btc_bet_hi_button');

function 
higherBet(){
console.log('Highest bet: '+higherbet);

function 
beginingBal(){
console.log('Begining Balance: '+begingbal);


function 
changeBet(bet){
startValue=bet;
}

function 
realtime(time) {
    var 
sec_num =parseInt(time10) ; // don't forget the second param
    
var hours   Math.floor(sec_num 3600);
    var 
minutes Math.floor((sec_num - (hours 3600)) / 60);
    var 
seconds sec_num - (hours 3600) - (minutes 60);

    if (
hours!=0) {hours   hours+' Hours ';}      else{hours   '';}

    if (
minutes!=0) {minutes minutes+' Minutes ';}
else{
minutes   '';}


    if (
seconds 10) {seconds seconds;}
    var 
time    'Playing time = '+hours+minutes+seconds+' Secondes';
    return 
time;
}

function 
roundnumb(){
console.clear();
    if( 
round == stopAt)
    {
    
stopGame()
    }
    else
    {
    
round round 1;
      
beginingBal();
        
console.log('Round #' round ' / ' stopAt);
    }
    
    var 
newbalance= $('#balance').text()
    var 
profit = (Number(newbalance) - Number(startbalance)).toFixed(8) ;
    
console.log('Profit:' profit ' Bitcoin')
}
//Number of round. Type stopatRound(NUMBER_OF_ROUND) to change
//function stopatRound(limitRound){
//stopAt=limitRound;
//}
function multiply(){
        var 
current = $('#double_your_btc_stake').val();
        var 
multiply = (current 2).toFixed(8); 
        $(
'#double_your_btc_stake').val(multiply);
        
console.log('Bet = ' multiply);
        if( 
higherbet multiply ){ higherbet=multiply; }
}
function 
getRandomWait(){
        var 
wait Math.floor(Math.random() * maxWait ) + 100//(Math.floor(Math.random() * 800) + 300)  ; // avant 100
        
console.log('Waiting for ' wait 'ms before next bet.');
        return 
wait ;
}
function 
startGame(limit){
document.getElementById("advertise_link_li").innerHTML '<a href="#" onclick="stopGame()" class="advertise_link">STOP BOT</a>';
starttime=(new Date()).getTime();
startValue prompt("Number of satoshi you want to bet?"'0.00000001');
oldbet=startValue;

    
round 0;
    
gameLost=0;
    
gameWin=0;
        
console.log('Game started!');
        
reset();
        
$loButton.trigger('click');
        if(
limit !== null) {
        
stopAt=limit;
        }
        else
        {
        
stopAt=-1;
        }

}
function 
stopGame(){
document.getElementById("advertise_link_li").innerHTML '<a href="#" onclick="startGame()" class="advertise_link">START BOT</a>';
        
console.log('Game will stop soon! Let me finish.');
        
stopped true;
startValue=oldbet;

}

function 
reset(){
    if( 
round 100 === && round !=0)
    {
    
startValue=(startValue 1.000).toFixed(8); //New bet after 100 round
    
console.log('Round ' round ': bet change for ' startValue);
    }
        $(
'#double_your_btc_stake').val(startValue);
}
// quick and dirty hack if you have very little bitcoins like 0.0000001
function deexponentize(number){
        return 
number 1000000;
}
function 
iHaveEnoughMoni(){
        var 
balance deexponentize(parseFloat($('#balance').text()));
        var 
current deexponentize($('#double_your_btc_stake').val());
        return ((
balance*2)/100) * (current*2) > stopPercentage/100;
}
function 
stopBeforeRedirect(){
        var 
minutes parseInt($('title').text());
        if( 
minutes stopBefore )
        {
                
console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
                
stopGame();
                return 
true;
        }
        return 
false;
}
// Unbind old shit
$('#double_your_btc_bet_lose').unbind();
$(
'#double_your_btc_bet_win').unbind();
// Loser
$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){

        if( $(
event.currentTarget).is(':contains("lose")') )
        {
        
gameLost gameLost 1;
        
roundnumb();
        
console.log('%cWin: ' gameWin ' Lost: ' gameLost'color: #00CC00');
                
endtime=(new Date()).getTime();
                var 
time=Math.floor((endtime-starttime )/1000);
                
higherBet();
        
console.log(realtime(time));
                
console.log('You LOST!');
                
multiply();
                
setTimeout(function(){
                        
$loButton.trigger('click');
                }, 
getRandomWait());
                
//$loButton.trigger('click');
        
}

}

);
// Winner
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
        if( $(
event.currentTarget).is(':contains("win")') )
        {

        
gameWin gameWin 1;
        
roundnumb();
        
console.log('%cWin: ' gameWin ' Lost: ' gameLost'color: #FF0000');
                
endtime=(new Date()).getTime();
                var 
time=Math.floor((endtime-starttime )/1000);
        
console.log(realtime(time));
                
higherBet();
            if( 
stopBeforeRedirect() )
                {
                        return;
                }
                if( 
iHaveEnoughMoni() )
                {

                        
console.log('You WON!');
                        
reset();
                        if( 
stopped )
                        {
                                
stopped false;
                                return 
false;
                        }
                }
                else
                {
                        
console.log('You WON! ');
                }
                
setTimeout(function(){
                        
$loButton.trigger('click');
                }, 
getRandomWait());
        }

}
); 

5. Click on Multiply BTC tab as shown on the image.
You are not allowed to view links. Register or Login to view.

6. Click on START BOT tab as shown on the image, then on the popup box which says 0.00000001 just press OK.
You are not allowed to view links. Register or Login to view.

And watch how you double/triple your earnings.

Proof Image
You are not allowed to view links. Register or Login to view.
(starting balance is blacked down for my own reasons)

After the free roll timer is near to 3mins the script will auto pause.

After you roll again you can restart the script by fallowing step 4.

Hope you will get many BTC's

If something is needed just reply here.

not working for me ... starts fine then drains my acct! Sad lame . what am i doing wrong?




it works for some seconds all of a sudden all my btc gone. 140,000 satoshi now 0.000000000

HMMM which version you used ?? version 3 and 4 have max stake out. As i tested many times it works just well, it still depends from server luck on how much times you get max stake. Anyone else having any issues like him/her ?

You are not allowed to view links. Register or Login to view.
You are not allowed to view links. Register or Login to view.
Find all posts by this user
Like Post Quote this message in a reply
06-02-2017, 03:39 PM (This post was last modified: 06-02-2017 03:47 PM by Darc Dailo.)
Post: #39
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(01-02-2017 06:53 AM)tetkapersa Wrote: You are not allowed to view links. Register or Login to view.HMMM which version you used ?? version 3 and 4 have max stake out. As i tested many times it works just well, it still depends from server luck on how much times you get max stake. Anyone else having any issues like him/her ?

The bot did not restart at the max stake I input. All my btc gone! Angry

Darc Dailo, Member of Bitcoin Black Hat since Jan 2017.
Find all posts by this user
Like Post Quote this message in a reply
07-02-2017, 02:42 AM
Post: #40
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
I have a strategy but I do not know how to implement the bot

I do manually and by day it generates 100k to 200k satoshi

Would be to bet 2 shatoshi in 2 shatoshi until loses 4 or 5x after increasing the bet to 256 shatoshi and from that value go doubling 512,1024,2048 ... until the loss of 62k of satoshi or bigger for bigger scales

xicret12, Member of Bitcoin Black Hat since May 2016.
Find all posts by this user
Like Post Quote this message in a reply
Advertisement
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
Star 100% Working [JavaScript] FreeBitCoin Console PC Auto Bot stephen27 8 3,504 15-06-2017 01:39 AM
Last Post: Gigforsure
  freedoge.co.in Multiply DOGE Auto Bot 2017 WORKING 100% tetkapersa 6 7,534 14-06-2017 10:13 AM
Last Post: guilhermejfs
Thumbs Up Freebitco.in FAST SCRIPT ROLLS AUTO CAPTCHA BOT 2017 WORKING 100% angelusce79 7 3,054 03-06-2017 07:30 PM
Last Post: Pandarian
  AUTO CAPTCHA FREEBITCO.IN BOT 2017 carluis 3 5,297 26-03-2017 11:51 AM
Last Post: captchacoin
  Coinbot Auto Betting Freebitco,in JohnGon 3 2,110 19-11-2016 01:16 PM
Last Post: JohnGon
  freebitco.in bot auto solved captcha angrybird 5 4,412 09-07-2016 07:57 AM
Last Post: jovis7

Forum Jump:


User(s) browsing this thread: 4 Guest(s)
Advertisement

Contact Us | Advertise with Us! | Return to Top | Return to Content | Mobile Version | RSS Syndication