Jump to content

Vitory cycle bets with multiplication


poorwood

Recommended Posts

This script can help you exploer your betting strategy. I usually put the base bet.  The bet will reset when you win and looptimes gone.

1. bet is the base wager

2. payout is when you will run

3. payoutgrowth is the multiples of growmth

4. looptimes is most times you loss,then reset wager

 

warning:you should find your best wager 、payout、payoutgrowth 、and looptimes,Otherwise you will lose all. Highly recommended to use jb test your number.

If it works, welcome tips me In game, or tip my eth address  0xE46E98Aa5c0372705297da147545d2F4813ec61a

var config = {
      bet: { value: currency.minAmount, type: 'number', label: 'Wager' },
      payout: { value: 3.4, label: 'payout', type: 'number' },
      payoutgrowth: { value: 1.1, label: 'payoutgrowth', type: 'number' },
      looptimes: { value: 3, type: 'number', label: 'looptimes' },
      onLoseTitle: { label: 'else cofig', type: 'title' },
    }

function main () {

  var payout = config.payout.value;
  var wager = config.bet.value;
  var payoutgrowth = config.payoutgrowth.value;
  var loop = 1;

  engine.on('GAME_STARTING', function () {
    engine.bet(wager, payout).then(function (res) { 
        log.success('bet success!');

    }).catch(function (err) { 
        log.error(err);
    })
    
  })
engine.on('GAME_ENDED', function () {
        wager =config.bet.value;
        var historyfirst = engine.getHistory();
        var firstHistory = historyfirst[0];
        if (firstHistory.cashedAt > 0 && firstHistory.wager > 0) {
            log.success('we won', currency.currencyName);
              loop = 1;
        }else if (firstHistory.cashedAt == 0 && firstHistory.wager > 0) {
            log.error('we lost', currency.currencyName);
            if(loop < config.looptimes.value){
                loop = loop + 1;
                wager = wager * Math.pow(payoutgrowth, loop-1);
            }else{
                loop = 1;
            }
         }
    })
}

Link to comment
Share on other sites

Cảm ơn bạn vì đã chia sẽ cho mọi người. Tôi cũng đang có ý tưởng chạy bot ghép giữa 2 bot 2 và 3 trong BCgame. Bạn có thể cho tôi biết có thể ghép chúng lại với nhau không? 

Ví dụ: Tôi bet 1 payout 2, nếu tôi thua tôi bet 2, payout +x.

Nếu bạn viết được hay bất cứ ai có thể viết được, tôi hứa sẽ cho bạn tiền thưởng

Link to comment
Share on other sites

11 hours ago, FSCATQTGroup said:

Cảm ơn bạn vì đã chia sẽ cho mọi người. Tôi cũng đang có ý tưởng chạy bot ghép giữa 2 bot 2 và 3 trong BCgame. Bạn có thể cho tôi biết có thể ghép chúng lại với nhau không? 

Ví dụ: Tôi bet 1 payout 2, nếu tôi thua tôi bet 2, payout +x.

Nếu bạn viết được hay bất cứ ai có thể viết được, tôi hứa sẽ cho bạn tiền thưởng

Can you describe more? 

first step  bet 1 payout y

second    bet 2*1 payout y+x

third  bet ?*1 payout y+x +?

Link to comment
Share on other sites

3 giờ trước, poorwood nói:

 

For example: Bet 1, payout 2 Bet 2, payout 4 bet 4, payout 8 bet 8, payout 16 bet 16, payout 32 The bet adds 1 y amount, and the payout plus 1 y amount.

Link to comment
Share on other sites

22 hours ago, FSCATQTGroup said:

For example: Bet 1, payout 2 Bet 2, payout 4 bet 4, payout 8 bet 8, payout 16 bet 16, payout 32 The bet adds 1 y amount, and the payout plus 1 y amount.

maybe i can try,leave your email. I will send the script to your email.

Link to comment
Share on other sites

12 hours ago, poorwood said:

có lẽ tôi có thể thử , để lại email của bạn. Tôi sẽ gửi kịch bản đến email của bạn.

[email protected]

Link to comment
Share on other sites

  • 2 months later...
On 3/19/2020 at 8:39 PM, FSCATQTGroup said:

Cảm ơn bạn vì đã chia sẽ cho mọi người. Tôi cũng đang có ý tưởng chạy bot ghép giữa 2 bot 2 và 3 trong BCgame. Bạn có thể cho tôi biết có thể ghép chúng lại với nhau không? 

Ví dụ: Tôi bet 1 payout 2, nếu tôi thua tôi bet 2, payout +x.

Nếu bạn viết được hay bất cứ ai có thể viết được, tôi hứa sẽ cho bạn tiền thưởng

Toi co the giup ban

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...