sábado, 8 de fevereiro de 2020

Novo Script FREEBITCOIN Ganhe Grátis Até 0,01 Satoshis de btc Live gan...





var startValue = '0.00000002', // Don't lower the decimal point more than 4x of current balance

    stopPercentage = 0.00000100, // In %. I wouldn't recommend going past 0.08 and initial per 0.0001

    stopLossVal = 0.00001000;//stop loss value

    maxWait = 540, // In milliseconds, 554 my magic key as high wining ration

    stopped = false,

    fixedHiLo = 0, //0 random, 1 hi fixed, 2 lo fixed

    stopBefore = 5; // In minutes

var accu = 0, contLoseCnt = 0, maxLose = 0, winCnt = 0, loseCnt = 0, winRatio = 0.0, hilo = 1;//1 : hi, 0:lo

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.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 getHilo(){

  if(fixedHiLo == 1){

    hilo = 1; //hi

  }else if(fixedHiLo == 2){

    hilo = 0; //lo

  }else {

    hilo = Math.floor(Math.random() * 2);//random

  }

  return hilo ;

}

function rollDice(){

  console.log('Game started!');

  reset();

  if (getHilo() == 1) {

    $hiButton.trigger('click');

  } else {

    $hiButton.trigger('click');

  }

}

function stopGame(){

  console.log('IAN M TAMVAN MAX :-).');

  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());

  // console.log("balance : "+balance);console.log("current : "+current);

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

}






Nenhum comentário:

Postar um comentário