You are on page 1of 5

(no subject)

MR. All In 1

kay ako

7 minuto ang nakalipasMga Detalye

var baseBet = 12;

var skip1 = 9;

var skip2 = 7;

var skip3 = 6;

var skip4 = 8;

var skip5 = 6;

var skip6 = 2

var bet = baseBet * 100;

var currentBet = bet;

var cashOut = 1.11;


var startBalance = engine.getBalance();

var currentBalance = startBalance;

var losses = 0;

var skip = 0;

var lostGames = 0;

var waitXgames = 0;

var CO = 0;

engine.on('game_starting', function(info) {

if (currentBet && engine.lastGamePlay() == 'LOST') {

lostGames++;

currentBalance = engine.getBalance();

losses = startBalance - currentBalance;

currentBet *= 2.3;

cashOut = (losses / currentBet) + 1.03;

if (lostGames >= 3) {

waitXgames = 0;
if (lostGames == 3) {

skip = skip1;

if (lostGames == 4) {

skip = skip2;

if (lostGames == 5) {

skip = skip3;

if (lostGames == 6) {

skip = skip4;

if (lostGames == 7) {

skip = skip5;

if (lostGames >= 8) {

skip = skip6;

}
}

} else {

currentBalance = engine.getBalance();

if (currentBalance > startBalance) {

currentBet = bet;

cashOut = 1.11;

startBalance = engine.getBalance();

lostGames = 0;

skip = 0;

if (waitXgames >= skip) {

console.log('Placing bet of', Math.floor(currentBet / 100), 'at', Math.round(cashOut * 100) / 100,


'Cash out.');

engine.placeBet(Math.floor(currentBet / 100) * 100, Math.floor(cashOut * 100), false);

});
engine.on('game_crash', function(data) {

if (data.game_crash / 100 >= CO) {

waitXgames++;

} else {

waitXgames++;

});

You might also like