【無料配布】bustabit 1.01(低倍率)投資法 自動スクリプト
海外版bustabitで使える、低倍率投資法の自動スクリプトです。
詳しい内容はブログ記事をご覧ください。
デフォルトでAUTOに含まれているMartingaleの数字を入れ替えただけなのでブログを見ながら数字を設定すればよいだけですが、面倒な方向けに予め必要な数字が入力されている状態のスクリプトを配布します。
仕様
・basebetを100とし、1.01倍に賭け続ける。
・1.0倍で負けたら次のゲームで100倍ベットで負けを取り返す。
・つまり、1.0倍が2連続出るまでは1bitずつ増え続け、1.0倍が2連続で続くという不運に見舞われると一気に10100bitの損失になるという仕組み。
・参考までに、1.0倍が2連続で出る確率は1/2,500です。
注意
当方は、「この方法で稼げる!」と配布しているわけではありません。
↑日本語対応のクライムポット(climbpot)用はコチラ
bustabit用 低倍率投資法(1.01倍法)自動スクリプト
var config = {
baseBet: { value: 10000, type: 'balance', label: 'base bet' },
payout: { value: 1.01, type: 'multiplier' },
stop: { value: 1e8, type: 'balance', label: 'stop if bet >' },
loss: {
value: 'increase', type: 'radio', label: 'On Loss',
options: {
base: { type: 'noop', label: 'Return to base bet' },
increase: { value: 100, type: 'multiplier', label: 'Increase bet by' },
}
},
win: {
value: 'base', type: 'radio', label: 'On Win',
options: {
base: { type: 'noop', label: 'Return to base bet' },
increase: { value: 2, type: 'multiplier', label: 'Increase bet by' },
}
}
};
log('Script is running..');
var currentBet = config.baseBet.value;
// Always try to bet when script is started
engine.bet(roundBit(currentBet), config.payout.value);
engine.on('GAME_STARTING', onGameStarted);
engine.on('GAME_ENDED', onGameEnded);
function onGameStarted() {
engine.bet(roundBit(currentBet), config.payout.value);
}
function onGameEnded() {
var lastGame = engine.history.first()
// If we wagered, it means we played
if (!lastGame.wager) {
return;
}
// we won..
if (lastGame.cashedAt) {
if (config.win.value === 'base') {
currentBet = config.baseBet.value;
} else {
console.assert(config.win.value === 'increase');
currentBet *= config.win.options.increase.value;
}
log('We won, so next bet will be', currentBet/100, 'bits')
} else {
// damn, looks like we lost :(
if (config.loss.value === 'base') {
currentBet = config.baseBet.value;
} else {
console.assert(config.loss.value === 'increase');
currentBet *= config.loss.options.increase.value;
}
log('We lost, so next bet will be', currentBet/100, 'bits')
}
if (currentBet > config.stop.value) {
log('Was about to bet', currentBet, 'which triggers the stop');
engine.removeListener('GAME_STARTING', onGameStarted);
engine.removeListener('GAME_ENDED', onGameEnded);
}
}
function roundBit(bet) {
return Math.round(bet / 100) * 100;
}
この記事が気に入ったらサポートをしてみませんか?