TheShred

⭐My Own Private BITCOIN SCRIPT!⭐

Recommended Posts

Leave a like for more HQ stuff

Remember its gambling there's a chance you won't win

 

Redesigned and old script and have been using it a little while, its configurable!

Enjoy

For Bustabit

Dont ask me how to use this its not hard to figure out

And Leave a like ;))))))))))))))

[align=center][hide]

var config = {
baseBet: { value: 100, type: 'balance', label: 'Original bet' },
payout: { value: 1.5, type: 'multiplier' },
stop: { value: 1e8, type: 'balance', label: 'Stop if your betting a certain amount >' },
loss: {
value: 'increase', type: 'radio', label: 'When you loose',
options: {
base: { type: 'noop', label: 'Return to Original bet' },
increase: { value: 5, type: 'multiplier', label: 'Bet Increase Rate' },
}
},
win: {
value: 'base', type: 'radio', label: 'If You Win',
options: {
base: { type: 'noop', label: 'Return to Original bet' },
increase: { value: 50, type: 'multiplier', label: 'Bet Increase Rate' },
}
}
};
log('Shreds BTC Script Running');
var currentBet = config.baseBet.value;
// Remember to bet on your first one!
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()
// Banaboms
if (!lastGame.wager) {
return;
}
// You 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('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('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;
}

[/hide][/align]

Share this post


Link to post
Share on other sites

What's your profile?

Share this post


Link to post
Share on other sites

dope dude love u <3

Share this post


Link to post
Share on other sites

What's your profile?

 

Guessing you Mean Default settings

I put all on return to base bet and put in $10 worth of BTC and then I do 100 bit bets with 1.5 payout takes a little bit but I usually come back with double within an hour, If I get into the 50k bit area I do per 1k for 10 bets

Share this post


Link to post
Share on other sites

Dude , you are a god

Share this post


Link to post
Share on other sites

awesomeeeeeeeeeeeeeeeeeee

Share this post


Link to post
Share on other sites

good job keep it up

Share this post


Link to post
Share on other sites

What's your profile?

 

Guessing you Mean Default settings

I put all on return to base bet and put in $10 worth of BTC and then I do 100 bit bets with 1.5 payout takes a little bit but I usually come back with double within an hour, If I get into the 50k bit area I do per 1k for 10 bets

 

He meant your bustabit profile.

Share this post


Link to post
Share on other sites

<3 best script ever

Share this post


Link to post
Share on other sites

nice one mate

Share this post


Link to post
Share on other sites

Thank you for good leech

Share this post


Link to post
Share on other sites

Leave a like for more HQ stuff

Remember its gambling there's a chance you won't win

 

Redesigned and old script and have been using it a little while, its configurable!

Enjoy

For Bustabit

Dont ask me how to use this its not hard to figure out

And Leave a like ;))))))))))))))

 

 

damn bro i really appreciate this leak!

Share this post


Link to post
Share on other sites

This script I think I was selling it for 15$, you have to be very careful because it can produce losses

Share this post


Link to post
Share on other sites

i just want to know what site is this, thanks anyways

Share this post


Link to post
Share on other sites

Thanks for this.

Share this post


Link to post
Share on other sites

need an investment ?

Share this post


Link to post
Share on other sites

PKaOOPH.gif

   hello brother...:)

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.