Breakpoint automatic script / 爆点自动脚本

in cn •  4 years ago 

image.png

爆点自动脚本

爆点是一款压点数的游戏
可以写自动脚本
让系统自动压点
写法如下
只要更改2个地方就可以了
1000代表着赌注0.1
1.3代表着爆点


var config = {
bet: { label: '赌注', value: currency.minAmount * 1000, type: 'number' },
payout: { label: '爆点', value: 1.3, type: 'number' }
}

function main () {
engine.on('GAME_STARTING', function () {
engine.bet(config.bet.value, config.payout.value);
})
}

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE BLURT!