The house edge of the dice game is 1% at Bitsler and it remains same always. I believe you (shasan) are mixing up the house edge and bet payout here.
I usually bet on bitsler. But I have not read this
page I was not aware about the house edge. I have just checked after seeing the question. I have checked on boom and it was 2% yet still I am partially wrong. But now I and the person who had made the question are clear about the house edge of bitsler.
Mahdirakib was right and you are wrong but you got lucky when you said that the house edge of bitsler is 2%. So, bitsler change their house edge from 1% and now to 2% but they did not announce this on their thread ?
They better should because there are some people that gamble based on the house and they think that they can win more when the house edge is low than when they gamble when the house edge is high but to you and to other gamblers maybe house edge does not really matter but as long as you know the reputation of the casino your playing at, your confident that you can win and if you lose you can accept it because losing is also normal in gambling.
Hmm .. Dice is and always was 1% HE afaik. I think, as mentioned before, that you are mixing up payout/chance with HE.
----
supplementalfunction diceHouseEdge(payout, edge) {
return console.log({
game: 'dice',
payout: payout,
edge: edge,
chance: Number(((100 / payout) - (edge / payout)).toFixed(2)),
low: `${0} - ${((100 / payout) - (edge / payout)).toFixed(2)}`,
high: `${(99.99 - ((100 / payout) - (edge / payout))).toFixed(2)} - ${99.99}`
});
}
Testing with our function using 1% and 2% for the edge parameter we can see that what's showing on the website is indeed 1% and not 2%
chance: 49.5
edge: 1
game: "dice"
high: "50.49 - 99.99"
low: "0 - 49.50"
payout: 2
chance: 49
edge: 2
game: "dice"
high: "50.99 - 99.99"
low: "0 - 49.00"
payout: 2