[-]
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%
22-01-2017, 09:17 AM
Post: #11
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(22-01-2017 05:26 AM)tetkapersa Wrote: You are not allowed to view links. Register or Login to view.
(22-01-2017 03:38 AM)DigDeep Wrote: You are not allowed to view links. Register or Login to view.I cant seem to get this one working as no start bot appears, your doge one is working fine though, thanks

START BOT tab is just near STATS as shown on the image in the first post under step 6.
Yeah I understand the instructions but no start bot button appears Sad


Attached File(s) Thumbnail(s)
   

DigDeep, Member of Bitcoin Black Hat since Aug 2016.
Find all posts by this user
Like Post Quote this message in a reply
Advertisement
22-01-2017, 09:58 AM (This post was last modified: 22-01-2017 10:02 AM by tetkapersa.)
Post: #12
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(22-01-2017 09:17 AM)DigDeep Wrote: You are not allowed to view links. Register or Login to view.
(22-01-2017 05:26 AM)tetkapersa Wrote: You are not allowed to view links. Register or Login to view.
(22-01-2017 03:38 AM)DigDeep Wrote: You are not allowed to view links. Register or Login to view.I cant seem to get this one working as no start bot appears, your doge one is working fine though, thanks

START BOT tab is just near STATS as shown on the image in the first post under step 6.
Yeah I understand the instructions but no start bot button appears Sad
On refresh page do you see ADVERTISE menu button ?
The script itself changes that menu button with START BOT.
Try my doge script and see if that changes the first menu link FREE DOGE to start bot if it does that, then ill change code for this script also, in order to fix this bug.

here is modified script with changed code tell me if it works for you.
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.004// In %. I wouldn't recommend going past 0.08
        
maxWait 500// In milliseconds
        
stopped false,
        
stopBefore 3// In minutes default 3
var oldbet0.00000001;
document.getElementById("free_play_link_li").innerHTML '<a href="#" onclick="startGame()" class="free_play_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('BTC Starting 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("free_play_link_li").innerHTML '<a href="#" onclick="stopGame()" class="free_play_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("free_play_link_li").innerHTML '<a href="#" onclick="startGame()" class="free_play_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());
        }

}
); 
If any other have issues with the code on first page he/she can use this one Smile
Cheers !

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
[+] 1 user Likes tetkapersa's post
22-01-2017, 10:16 AM
Post: #13
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(22-01-2017 09:58 AM)tetkapersa Wrote: You are not allowed to view links. Register or Login to view.
(22-01-2017 09:17 AM)DigDeep Wrote: You are not allowed to view links. Register or Login to view.
(22-01-2017 05:26 AM)tetkapersa Wrote: You are not allowed to view links. Register or Login to view.
(22-01-2017 03:38 AM)DigDeep Wrote: You are not allowed to view links. Register or Login to view.I cant seem to get this one working as no start bot appears, your doge one is working fine though, thanks

START BOT tab is just near STATS as shown on the image in the first post under step 6.
Yeah I understand the instructions but no start bot button appears Sad
On refresh page do you see ADVERTISE menu button ?
The script itself changes that menu button with START BOT.
Try my doge script and see if that changes the first menu link FREE DOGE to start bot if it does that, then ill change code for this script also, in order to fix this bug.

here is modified script with changed code tell me if it works for you.
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.004// In %. I wouldn't recommend going past 0.08
        
maxWait 500// In milliseconds
        
stopped false,
        
stopBefore 3// In minutes default 3
var oldbet0.00000001;
document.getElementById("free_play_link_li").innerHTML '<a href="#" onclick="startGame()" class="free_play_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('BTC Starting 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("free_play_link_li").innerHTML '<a href="#" onclick="stopGame()" class="free_play_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("free_play_link_li").innerHTML '<a href="#" onclick="startGame()" class="free_play_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());
        }

}
); 
If any other have issues with the code on first page he/she can use this one Smile
Cheers !

Perfect the new code works, thank you Smile

DigDeep, Member of Bitcoin Black Hat since Aug 2016.
Find all posts by this user
Like Post Quote this message in a reply
22-01-2017, 08:00 PM
Post: #14
Question RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
error guys[/php]


Attached File(s) Thumbnail(s)
   

aafiqih, Member of Bitcoin Black Hat since Jan 2017.
Find all posts by this user
Like Post Quote this message in a reply
Advertisement
23-01-2017, 01:54 AM
Post: #15
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(22-01-2017 08:00 PM)aafiqih Wrote: You are not allowed to view links. Register or Login to view.error guys[/php]

Dont realy get how you get errors, just tested it again on both machines on chrome and its working just fine.

Any others have issues like him ??

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
24-01-2017, 12:20 AM
Post: #16
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
This bot what it does is take the balance to 0 without gaining nothing, only to lose ...

carluis, Member of Bitcoin Black Hat since Jan 2017.
Find all posts by this user
Like Post Quote this message in a reply
24-01-2017, 05:20 AM
Post: #17
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(24-01-2017 12:52 AM)goarinaengoaronny Wrote: You are not allowed to view links. Register or Login to view.Just got penalized for using it... took away most of my earnings Sad

How long did you let it run for?

I ran it for ten minutes last night to 30k, then today for another 10 till i got to 50k. I've not been penalised, but maybe you were using much higer stakes than me.

Lyceumhq, Member of Bitcoin Black Hat since Dec 2016.
Find all posts by this user
Like Post Quote this message in a reply
Advertisement
24-01-2017, 07:00 AM
Post: #18
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
Indeed you need to run it low like 10mins, as i tested it. Longer times = high stakes to loose a lot.
Then its gambling bot so its % chance to win or loose.

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
25-01-2017, 07:07 AM
Post: #19
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
First off, I love the bot, so far it's been the best one I've seen with the most consistent wins.

However I had a few questions:

a) What can we modify to set a limit on bets (to keep us from losing a ton)
- when I was running it with a balance of .008 BTC every time it was about to go to .009 it would suddenly have a ton of loses cutting my BTC in half. So setting a max limit would help

b) Is there a way to set a timer besides the 3 min. limit? I think that could be part of what causes the massive loss.

Thanks!

phoenixrising, Member of Bitcoin Black Hat since Dec 2016.
Find all posts by this user
Like Post Quote this message in a reply
25-01-2017, 08:30 PM
Post: #20
RE: freebitco.in Multiply BTC Auto Bot 2017 WORKING 100%
(25-01-2017 07:07 AM)phoenixrising Wrote: You are not allowed to view links. Register or Login to view.So setting a max limit would help

Agreed.

Darc Dailo, Member of Bitcoin Black Hat since Jan 2017.
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,495 15-06-2017 01:39 AM
Last Post: Gigforsure
  freedoge.co.in Multiply DOGE Auto Bot 2017 WORKING 100% tetkapersa 6 7,518 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,042 03-06-2017 07:30 PM
Last Post: Pandarian
  AUTO CAPTCHA FREEBITCO.IN BOT 2017 carluis 3 5,288 26-03-2017 11:51 AM
Last Post: captchacoin
  Coinbot Auto Betting Freebitco,in JohnGon 3 2,109 19-11-2016 01:16 PM
Last Post: JohnGon
  freebitco.in bot auto solved captcha angrybird 5 4,411 09-07-2016 07:57 AM
Last Post: jovis7

Forum Jump:


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

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