見出し画像

ロジック提供(ココモ法)

最強ロジックの一つ、ココモ法を提供いたします。

ロジックには無償版および有償版があり以下機能が設定できます。

 ・ベースベット(無償版・有償版)
 ・ペイアウト倍率(無償版・有償版)
 ・利確ライン(無償版・有償版)
 ・損切ライン(有償版のみ)
 ・Betタイミングの制御機能(有償版のみ)


有償版についている「Betタイミングの制御機能」は、以下のようにBetするタイミングを調整できます!!
そのため無駄な損失はございません。

画像4


尚、ココモ法ロジック実践時は以下の挙動イメージとなります。

画像1


スクリプトを24時間稼働させる方法は、こちらをご覧下さい。


無償版スクリプト

var config = {
	head: { label: '設定' , type: 'noop'},
	baseBet: { value: 100, type: 'balance', label: 'ベースベット' },
	payout: { value: 3, type: 'multiplier', label: 'ペイアウト倍率' },
	limit: { value: 1000000, type: 'balance', label: '利確ライン' },
}


var last1 = 0;
var last2 = 0;

var init_Balance = userInfo.balance ;
var limit_Balance = userInfo.balance +  config.limit.value; ;

log('Balanceが', limit_Balance/100 ,'になったら終了します' );

var currentBet = config.baseBet.value;
var currentPayout = config.payout.value;

engine.on('GAME_STARTING', onGameStarted);
engine.on('GAME_ENDED', onGameEnded);

function onGameStarted() {
	engine.bet(roundBit(currentBet), currentPayout);
	log('bet:' , currentBet/100 + 'bits', currentPayout + 'x');

   //limit 終了
   if ( userInfo.balance   > limit_Balance) {
       stop('利確ライン達成');
   }

}

function onGameEnded() {
var lastGame = engine.history.first()
if(lastGame.wager){
if(lastGame.cashedAt) {
	currentBet = config.baseBet.value;
	last1 = 0;
	log('win balance:'  ,userInfo.balance/100 );
}else{
	last2 = last1;
	last1 = currentBet;
	currentBet = last1 + last2;
	log('lose balance:', userInfo.balance/100 );
}
}
}
function roundBit(bet) {
return Math.round(bet / 100) * 100;
}


有償版スクリプト

ここから先は

2,564字

¥ 3,000

期間限定 PayPay支払いすると抽選でお得に!

この記事が気に入ったらサポートをしてみませんか?