Author

Topic: Script ( freebitco.in ) (Read 3084 times)

newbie
Activity: 6
Merit: 0
December 04, 2017, 11:24:41 AM
#9
send mail to me... [email protected]

i have script like you need
newbie
Activity: 5
Merit: 0
July 25, 2017, 07:54:46 AM
#8
Don't even bother with scripts, not worth it.
legendary
Activity: 1540
Merit: 1011
FUD Philanthropist™
July 25, 2017, 04:13:28 AM
#7
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.  Roll Eyes

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
newbie
Activity: 58
Merit: 0
July 24, 2017, 08:04:30 PM
#6
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
full member
Activity: 197
Merit: 100
Web Designer/Developer here!
February 03, 2017, 02:59:16 AM
#5
Lemme see if this works
newbie
Activity: 14
Merit: 0
January 28, 2017, 05:27:04 PM
#4

It should stop when stopPercentage reach = 0.0000001 but it's not working.
newbie
Activity: 14
Merit: 0
sr. member
Activity: 392
Merit: 250
January 28, 2017, 02:20:21 PM
#2
Isn't this the free martingale script that available freely anywhere?
newbie
Activity: 14
Merit: 0
January 28, 2017, 11:36:11 AM
#1
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(Cool;
    $('#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()

Jump to: