You are on page 1of 2

maxLose += 1;

loseCnt += 1;
if(maxLose > contLoseCnt) {contLoseCnt = maxLose;}
winRatio = ((winCnt / (winCnt+loseCnt))*100).toFixed(2);
accu -= parseFloat($('#double_your_btc_stake').val());
console.log('Stop Lose Bangke!'+' cumulative : '+(accu).toFixed(8)+' odds :
'+winRatio+'%'+' cont lose : '+contLoseCnt);
multiply();
if (getHilo() == 1) {
setTimeout(function(){
$loButton.trigger('click');
}, getRandomWait());
} else {
setTimeout(function(){
$hiButton.trigger('click');
}, getRandomWait());
}
}
});
// Winner
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event) {
if( $(event.currentTarget).is(':contains("win")') ) {
if( stopBeforeRedirect()) {
return;
}
maxLose = 0 ;
accu += parseFloat($('#double_your_btc_stake').val());
if( iHaveEnoughMoni()) {
winCnt += 1;
winRatio = ((winCnt / (winCnt+loseCnt))*100).toFixed(2);
console.log('Ian M TamVan'+' cumulative : '+(accu).toFixed(8)+' odds :
'+winRatio+'%'+' cont lose : '+contLoseCnt);
reset();
if( stopped) {
stopped = false;
return false;
}
} else {//reset
winCnt += 1;
winRatio = ((winCnt / (winCnt+loseCnt))*100).toFixed(2);
console.log('Ian M TamVan Total'+' cumulative : '+(accu).toFixed(8)+'
odds : '+winRatio+'%'+' cont lose : '+contLoseCnt);
winCnt = 0, loseCnt = 0, winRatio = 0.0;
}
if (getHilo() == 1) {
setTimeout(function(){
$loButton.trigger('click');
}, getRandomWait());
//hilo = 0;
}else {
setTimeout(function(){
$hiButton.trigger('click');
}, getRandomWait());
//hilo = 1;
}
}
});rollDice();
++++++++++++++++++++++++++++++++++++++++++++++++++++++
+----------------------------------

You might also like