Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

var baseBet = parseFloat (0,00000001);

var maxWin = -1;


var szansaValue = 50;
var betMode = 0;
var mulBet = 2;
var previousBalance = $ (' #money ') .text ();
var cntLose = 0;
var cntWin = 0;
var newBet = baseBet;

function processBet (sudalicha, bet) {


let balance = parseFloat ($ (' #money ') .text ()). toFixed (8);
$ .post (" https://www.free-litecoin.com/php/betnow.php ", {money: bet, winchance:
szansaValue, sudalicha: sudalicha})
.done (function (data) {
newBet = bet;
if (data.winlost) {
cntWin ++;
newBet = parseFloat (baseBet) .toFixed (8);
cntLose = 0;
} else {
cntLose ++;
if (cntLose> = 1) {
newBet = parseFloat (bet * mulBet) .toFixed (8);
if (newBet> balance) {
console.log ("B? n kh�ng con d? ti? nd? cu? c them");
}
} else {
newBet = parseFloat (baseBet) .toFixed (8);
}
}
$ ('# pieni�dze ') .text (parseFloat (data.cryptovalue) .toFixed (8));
if (cntWin == maxWin) {
console.log ("?a th? ng d?" + maxWin + "l? n");
} else {
processBet (betMode, newBet);
}
})
.fail (function (jqXHR, textStatus) {
if (textStatus === 'timeout')
{
console.log ("limit czasu");
} else {
if (textStatus === 'b��d')
{
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);

You might also like