Bitcoin Forum

Other => Off-topic => Topic started by: plaaster29 on January 28, 2017, 03:36:11 PM



Title: Script ( freebitco.in )
Post by: plaaster29 on January 28, 2017, 03:36:11 PM
Hi !

Can anyone help me write a scrypt.

I have one what works. It work to good, roll until the win.
I want to make it to roll 4 or 6 times. And start game again.
How to do that ?

var startValue = '0.00000010', // Don't lower the decimal point more than 1x of current balance
    stopPercentage = 0.0000001, // In % of total BTC upper right hand corner, forces the script to not make dumb wagers
    maxWait = 777, // In milliseconds
    stopped = false, // debugging, change to true to test varible changes
    stopBefore = 1; // In minutes for timer

var $loButton = $('#double_your_btc_bet_lo_button'),
        $hiButton = $('#double_your_btc_bet_hi_button');

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

function getRandomWait(){
    var wait = Math.floor(Math.random() * maxWait ) + 1000;

    console.log('Waiting for ' + wait + 'ms before next bet.');

    return wait ;
}

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

function stopGame(){
    console.log('Game will stop soon! Let me finish.');
    stopped = true;
}

function reset(){
    $('#double_your_btc_stake').val(startValue);
}

// quick and dirty hack if you have very little bitcoins like 0.00000001
function deexponentize(number){
    return number * 10000000;
}

function iHaveEnoughMoni(){
    var balance = deexponentize(parseFloat($('#balance').text()));
    var current = deexponentize($('#double_your_btc_stake').val());

    return ((balance)*2/100) * (current*2) > stopPercentage/0.0000440;
}

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")') )
    {
        console.log('You LOST! Multiplying your bet and betting again.');
       
        multiply(4);

        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")') )
    {
        if( stopBeforeRedirect() )
                {
                        return;
                }

        if( iHaveEnoughMoni() )
        {
            console.log('You WON! But don\'t be greedy. Restarting!');

            reset();

            if( stopped )
            {
                stopped = false;
                return false;
            }
        }
        else
        {
            console.log('You WON! Betting again');
        }

        setTimeout(function(){
            $loButton.trigger('click');
        }, getRandomWait());
    }
});startGame()



Title: Re: Script ( freebitco.in )
Post by: DiscoverCebu on January 28, 2017, 06:20:21 PM
Isn't this the free martingale script that available freely anywhere?


Title: Re: Script ( freebitco.in )
Post by: plaaster29 on January 28, 2017, 08:45:18 PM
I found it here - http://earning1btc.blogspot.com.ee/2016/02/earn-1-btc-freebitcoin-script-100.html


Title: Re: Script ( freebitco.in )
Post by: plaaster29 on January 28, 2017, 09:27:04 PM
I found it here - http://earning1btc.blogspot.com.ee/2016/02/earn-1-btc-freebitcoin-script-100.html

It should stop when stopPercentage reach = 0.0000001 but it's not working.


Title: Re: Script ( freebitco.in )
Post by: AceKnight on February 03, 2017, 06:59:16 AM
Lemme see if this works


Title: Re: Script ( freebitco.in )
Post by: FireXX on July 25, 2017, 12:04:30 AM
any script even if magic well not work , at certain amount you won, they well pul all your earnings in few rolls, i tried many scripts and lost thousands of satoshi . bet programs designed to pull all the money


Title: Re: Script ( freebitco.in )
Post by: Spoetnik on July 25, 2017, 08:13:28 AM
SCRYPT ?
You mean "script"
And no it won' help.
The system is designed to make you lose.
It's like thinking you have a winning system at the casino.. not happening.  ::)

I do believe the site is legit though.
I have sent many people over there and have 97 referrals.
If you guys want to sign up using my ref link here.. https://freebitco.in/?r=6035

So i am saying i think this site is ok but there is no point in trying to script there gambling.

@DiscoverCebu
I was thinking of that too and the fact people say it doesn't work anyway. LOL


Title: Re: Script ( freebitco.in )
Post by: cRaZy127 on July 25, 2017, 11:54:46 AM
Don't even bother with scripts, not worth it.


Title: Re: Script ( freebitco.in )
Post by: hhhoang on December 04, 2017, 03:24:41 PM
send mail to me... hhhoang2008@gmail.com

i have script like you need