0% found this document useful (0 votes)
221 views

PDF Script LTC DL

This document contains code for a gambling script that allows users to place bets with cryptocurrency. It defines variables for the base bet amount, maximum wins, chance of winning, bet mode, multiplier for losses, and min/max random values. It contains functions to process bets by making API calls, updating balances, and applying betting formulas based on win/loss streaks. The code also initializes an interval to continuously place bets while the user's balance remains above the current bet amount.

Uploaded by

Dacio Messias
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
221 views

PDF Script LTC DL

This document contains code for a gambling script that allows users to place bets with cryptocurrency. It defines variables for the base bet amount, maximum wins, chance of winning, bet mode, multiplier for losses, and min/max random values. It contains functions to process bets by making API calls, updating balances, and applying betting formulas based on win/loss streaks. The code also initializes an interval to continuously place bets while the user's balance remains above the current bet amount.

Uploaded by

Dacio Messias
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

 

var baseBet = parseFloat(0.0000001);


var maxWin = 10;
var chanceValue = 50;
var betMode = 0;
var mulBet = 2;
var minValue = (chanceValue * 1000);
var maxValue = ((100 - chanceValue) * 1000);
var previousBalance = $('#money').text();
var cntLose = 0;
var cntWin = 0;
var newBet = baseBet;
var arrPrevious = [];

function applyFormula(bet) {
  let currentBalance = $('#money').text();
  if(bet > currentBalance) {
  console.log("Bạn không còn đủ t iền để cược thêm");
ti
  } else {
  let new_mode = betMode;
  if(arrPrevious[4] <= minValue) {
  new_mode = 1;
  } else {
  if(arrPrevious[4] >= maxValue) {
  new_mode = 0;
  }

 
  }
if(cntWin == maxWin) {
  co
cons
nsol
ole.
e.lo
log(
g("Đã thắng đủ " + ma
"Đã maxWin + " lần");
xWin n");
  } else {
  processBet(new_mode, bet);
}
  }
}

function processBet(sudalicha, bet) {


  let balance = parseFloat($('#money').text()).toFixed(8);
parseFloat($('#money').tex t()).toFixed(8);
  $.post( "https://www.free-litecoin.com/php/betnow.php",
"https://www.free-litecoin.c om/php/betnow.php", { money: bet,
winchance: chanceValue, sudalicha: sudalicha })
  .done(function( data ) {
  newBet = bet;
if(data.winlost) {
cntWin ++;
newBet = parseFloat(baseBet).toFixed(8);
cntLose = 0;
} else {
let len = arrPrevious.length;
if(len === 5) {
arrPrevious.splice(0, 1);
}
arrPrevious.push(data.number);
cntLose++;
if(cntLose >= 1) {
newBet = parseFloat(bet * mulBet).toFixed(8);
} else {
newBet = parseFloat(baseBet).toFixed(8);
}

}
$('#money').text(parseFloat(data.cryptovalue).toFixed(8));
applyFormula(newBet);
 

  })
  .fail(function(jqXHR, textStatus){
  if(textStatus === 'timeout')
  {
console.log("timeout");
  } else {
  if(textStatus === 'error')
  {
  processBet(betMode, newBet);
  } else {
  console.log(textStatus);
  }
  }
  });
}

var interval_obj = setInterval(function(){


  let currentBalance = $('#money').text();
  if(previousBalance != currentBalance) {
  previousBalance = currentBalance;
  } else {
  if(currentBalance > newBet) {
  processBet(betMode, newBet);
  } else {
  clearInterval(interval_obj);

 
  } }
}, 180000);

processBet(betMode, baseBet);

Blockchain Unconfirmed Tx Hack 2020.txt

You might also like