Jump to content

Script para nunca perder


Cryptomillo

Recommended Posts

var config = {
  bet: { label: 'Apuesta', value: currency.minAmount, type: 'number' },
  payout: {label: 'Retirada', type: 'radio', value: 2.0, options: [{value: 2.00, label: '2x'}, {value: 1.40, label: '1.4x'}, {value: 2.20, label: '2.2x'}, {value: 2.30, label: '2.3x'}]},
}

function main () {
  var current = config.bet.value;
  engine.on('GAME_STARTING', function () {
    var latest = engine.getHistory()[0];
    if(latest.crash  > 199) {  // verde
      engine.bet(current, config.payout.value);
    }
  });

  engine.on('GAME_ENDED', function () {
    var latest = engine.getHistory()[0];
    // If we wagered, it means we played
    if (!latest.wager) {
      return;
    }

    // perdimos
    if (!latest.cashedAt) {
       log.info('Perdimos 😞 ' + current + currency.currencyName);
       current = current * 2;
    } else {
       current = config.bet.value;
    }
  });
}

Link to comment
Share on other sites

  • 3 months later...
  • 7 months later...
On 4/14/2020 at 12:06 PM, Cryptomillo said:

var config = {
  bet: { label: 'Apuesta', value: currency.minAmount, type: 'number' },
  payout: {label: 'Retirada', type: 'radio', value: 2.0, options: [{value: 2.00, label: '2x'}, {value: 1.40, label: '1.4x'}, {value: 2.20, label: '2.2x'}, {value: 2.30, label: '2.3x'}]},
}

function main () {
  var current = config.bet.value;
  engine.on('GAME_STARTING', function () {
    var latest = engine.getHistory()[0];
    if(latest.crash  > 199) {  // verde
      engine.bet(current, config.payout.value);
    }
  });

  engine.on('GAME_ENDED', function () {
    var latest = engine.getHistory()[0];
    // If we wagered, it means we played
    if (!latest.wager) {
      return;
    }

    // perdimos
    if (!latest.cashedAt) {
       log.info('Perdimos 😞 ' + current + currency.currencyName);
       current = current * 2;
    } else {
       current = config.bet.value;
    }
  });
}

hey como lo uso ?

}

 

Link to comment
Share on other sites

  • 3 months later...
On 4/14/2020 at 1:06 PM, Cryptomillo said:

var config = {
  bet: { label: 'Apuesta', value: currency.minAmount, type: 'number' },
  payout: {label: 'Retirada', type: 'radio', value: 2.0, options: [{value: 2.00, label: '2x'}, {value: 1.40, label: '1.4x'}, {value: 2.20, label: '2.2x'}, {value: 2.30, label: '2.3x'}]},
}

function main () {
  var current = config.bet.value;
  engine.on('GAME_STARTING', function () {
    var latest = engine.getHistory()[0];
    if(latest.crash  > 199) {  // verde
      engine.bet(current, config.payout.value);
    }
  });

  engine.on('GAME_ENDED', function () {
    var latest = engine.getHistory()[0];
    // If we wagered, it means we played
    if (!latest.wager) {
      return;
    }

    // perdimos
    if (!latest.cashedAt) {
       log.info('Perdimos 😞 ' + current + currency.currencyName);
       current = current * 2;
    } else {
       current = config.bet.value;
    }
  });
}

Cómo se usa el script

 

On 4/14/2020 at 1:06 PM, Cryptomillo said:

var config = {
  bet: { label: 'Apuesta', value: currency.minAmount, type: 'number' },
  payout: {label: 'Retirada', type: 'radio', value: 2.0, options: [{value: 2.00, label: '2x'}, {value: 1.40, label: '1.4x'}, {value: 2.20, label: '2.2x'}, {value: 2.30, label: '2.3x'}]},
}

function main () {
  var current = config.bet.value;
  engine.on('GAME_STARTING', function () {
    var latest = engine.getHistory()[0];
    if(latest.crash  > 199) {  // verde
      engine.bet(current, config.payout.value);
    }
  });

  engine.on('GAME_ENDED', function () {
    var latest = engine.getHistory()[0];
    // If we wagered, it means we played
    if (!latest.wager) {
      return;
    }

    // perdimos
    if (!latest.cashedAt) {
       log.info('Perdimos 😞 ' + current + currency.currencyName);
       current = current * 2;
    } else {
       current = config.bet.value;
    }
  });
}

Si pudieras ayudarme 

Link to comment
Share on other sites

  • 3 weeks later...

bet: { label: 'Apuesta', value: currency.minAmount, type: 'number' },
  payout: {label: 'Retirada', type: 'radio', value: 2.0, options: [{value: 2.00, label: '2x'}, {value: 1.40, label: '1.4x'}, {value: 2.20, label: '2.2x'}, {value: 2.30, label: '2.3x'}]},
}

function main () {
  var current = config.bet.value;
  engine.on('GAME_STARTING', function () {
    var latest = engine.getHistory()[0];
    if(latest.crash  > 199) {  // verde
      engine.bet(current, config.payout.value);
    }
  });

  engine.on('GAME_ENDED', function () {
    var latest = engine.getHistory()[0];
    // If we wagered, it means we played
    if (!latest.wager) {
      return;
    }

    // perdimos
    if (!latest.cashedAt) {
       log.info('Perdimos 😞 ' + current + currency.currencyName);
       current = current *

Link to comment
Share on other sites

  • 7 months later...

Archived

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

×
×
  • Create New...