For those who aren't so great at deciphering javascript gambling scripts... I've coded a script for a "well known dicebot"...
It seems to have a SHA256 "similar" to: e9474064aaeb4d07689d80952adb4d785d318fcd43947b90ec25c12450876f50 *wink wink*
So, I estimate it's worth about 50 BTC! *cough* #makeMartingaleGreatAgain
And here is a prettier version of the script,
let initialBettingValues = {
baseBet : 0.0000001,
baseChance : 91.851,
firstLossMultiplier : 4,
lossMultiplier : 5,
lossChance : 79.360
}
let nextBet = initialBettingValues ? initialBettingValues : "0"
let chance = baseChance ? baseChance : "0"
doBet =(win,currentStreak,previousbet)=> {
if(win){
nextBet = initialBettingValues.baseBet
chance = baseBet
} else if (currentStreak === -1){
//First Loss
nextBet = previousbet * firstLossMultiplier
} else {
nextbet = previousbet * lossMultiplier
}
chance = lossChance
}
Does this makes it any valuable ? lol