13 January, 2021 - 01:18 AM
thank for you sharing this bro
This post is by a banned member (lasilix) - Unhide
13 January, 2021 - 01:18 AM
thank for you sharing this bro
This post is by a banned member (dripboyontop) - Unhide
14 January, 2021 - 06:18 AM
lets see
Please leave a like :)
My Shop: https://sellix.io/topshopp
This post is by a banned member (solbreuxk1) - Unhide
20 January, 2021 - 01:23 AM
var config = {
wager: { value: 100, type: 'balance', label: 'wager' }, payout: { value: 1.2, type: 'multiplier', label: 'payout' } }; // Try to bet immediately when script starts if (engine.gameState === "GAME_STARTING") { makeBet(); } engine.on('GAME_STARTING', onGameStarted); engine.on('GAME_ENDED', onGameEnded); function onGameStarted() { makeBet(); } function onGameEnded() { var lastGame = engine.history.first(); // If we wagered, it means we played if (!lastGame.wager) { return; } if (lastGame.cashedAt) { var profit = Math.round((config.wager.value * config.payout.value - config.wager.value) / 100) log('we won', profit, 'bits'); } else { log('we lost', Math.round(config.wager.value * 100), 'bits'); } } function makeBet() { engine.bet(config.wager.value, config.payout.value); log('betting', Math.round(config.wager.value / 100), 'on', config.payout.value, 'x'); }
This post is by a banned member (kingstyle20) - Unhide
23 February, 2021 - 01:18 PM
i will try it!! ;)
|
Create an account or sign in to comment | ||
You need to be a member in order to leave a comment | ||
Create an account
Sign up for a new account in our community. It's easy!
|
or |
Sign in
Already have an account? Sign in here.
|