Pages:
Author

Topic: CakeBet - Bitcoin Casino | Play Dice and Blackjack - page 9. (Read 10221 times)

member
Activity: 70
Merit: 10
*Sorry Blackjack :p
member
Activity: 70
Merit: 10
I think Blackhack is good For Gambling Grin
newbie
Activity: 18
Merit: 0
what games are you makin next ? Cheesy
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
Hey RGBKey, did that explanation of our provably fair system help? Let me know if you need more clarification.

I love your casino, but I always lose Smiley)) can you fix this?Tongue

Hey serje! We are glad you love our casino, we love having you play and give us feedback! The house edge is low as it gets for roulette so we can't do much about that but are the other features you would like to see in the game or on the site? Let me know!
legendary
Activity: 1232
Merit: 1002
Hey RGBKey, did that explanation of our provably fair system help? Let me know if you need more clarification.

I love your casino, but I always lose Smiley)) can you fix this?Tongue
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
Hey RGBKey, did that explanation of our provably fair system help? Let me know if you need more clarification.
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
We have been listed in Mikes Legitimate Gambling sites

19.   cakebet.com(✓✓✓✓✓)

Thank you Mike!
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
some free coins to try it out?
edit: i re-read the signup bonus lol  Roll Eyes

When I have some more money I come back I swear Cheesy

Thanks FanEagle, hope to see you soon! Do you have any questions or feedback on the site?
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
Live roulette is much better.

Hey zolace! I don't see live roulette in our future development plans but do you have any suggestions on our current implementation to make it a better experience?
sr. member
Activity: 364
Merit: 250
Live roulette is much better.
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
So what you do is use the Mersenne twister to shuffle your "deck" again after the initial to make it truly random. But the Mersenne twister doesn't have a range from 1-37 by default, so how do you get that to work with the Fisher Yates? And do you run through the whole algo for fisher yates using the next sequential random numbers in the mersenne twister?

Hi RGBKey,

Yes, this is how it works.  The range will decrease as you loop through the Fisher-Yates shuffle, but to get it within range we use the modulus operator.

ex in javascript:

Code:
function shuffle(array, mt) {
    var i, j, t;

    for (i = len - 1; i > 0; i--) {
        j = mt.init_genrand() % (i + 1);
        t = array[j];
        array[j] = array[i];
        array[i] = t;
    }
}

Hope that clears things up.

Notes:
The Mersenne Twister will need to be initialized with a seed using `init_by_array` (this is present in the canonical c implementation, but generally available in translations) with the last 4 bytes of the sha256 of `server_seed + client_seed`.
The `client_seed + server_seed` is utf-8 encoded.  We accept 32 characters for the `client_seed`, which could be from 32 to 128 bytes.
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
Who picked up the music?

It's hallucinating and hypnotizing at the same time!

Even if you lose you are not mad!

I really like that music!

Thanks serje! We have a dedicated sound designer that does the background music, and I will be sure to pass on your gratitude to him. The roulette background music is also available on YouTube and SoundCloud if you would like to listen to it there as well.
legendary
Activity: 1232
Merit: 1002
Who picked up the music?

It's hallucinating and hypnotizing at the same time!

Even if you lose you are not mad!

I really like that music!
legendary
Activity: 2884
Merit: 1117
some free coins to try it out?
edit: i re-read the signup bonus lol  Roll Eyes

When I have some more money I come back I swear Cheesy
hero member
Activity: 854
Merit: 658
rgbkey.github.io/pgp.txt
Why are people so hung up on provably fair? Nothing is provably fair.
What people currently think is "provably" fair, really isn't. If it was, then it wouldn't be gambling,
because then people could easily see the results before they became results.

tsume, people cannot see the results before they gamble. That wouldn't be provably fair, that would be easy money.

Provably fair is when there is proof that your results are completely random, and can be influenced by you (Not influenced as in you can make the results what you want, but influenced as in input from you changes the end result while still being random.) and then the site proves to you that your roll has already been determined by providing a hash of the data used to decide the results, and then releasing the data after you are done betting. This way, you can check to see that the site operator is not changing the odds in their favor using strong cryptography instead of trust and reputation. There is no official guidelines for being provably fair, other than they satisfy the above requirements. As long as the site uses any kind of algorithm to prove they are using fair random results, then it is provably fair.
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
Why are people so hung up on provably fair? Nothing is provably fair.
What people currently think is "provably" fair, really isn't. If it was, then it wouldn't be gambling,
because then people could easily see the results before they became results.


Hey tsume90! Did you have any problems verifying our provably fair system? We have a how-to listed on provably fair page if you needed any references.

Let me know.
hero member
Activity: 854
Merit: 658
rgbkey.github.io/pgp.txt
Question about your provably fair algo. This isn't the first time i've looked at Mersenne twisters, but I think I understand it now. I get everything up until you use the Mersenne twister and the fisher yates. The Mersenne twister used with a seed isn't just one random number, it's a whole bunch, but you can do it over and over again and get the same results if you start from the beginning. So what you do is use the Mersenne twister to shuffle your "deck" again after the initial to make it truly random. But the Mersenne twister doesn't have a range from 1-37 by default, so how do you get that to work with the Fisher Yates? And do you run through the whole algo for fisher yates using the next sequential random numbers in the mersenne twister? It would be easier to see if I could actually play but my IP is blocked from the US. I can PM you my IP if you unblock it, and I can deposit my own coins just to test, or you can give me some fake coins that I can't withdraw if you're not comfortable with that. Thanks.
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
I cant play from my Browser ( Mobile ) ,
Can you Desaign for Mobile ,


Hey Jacksquere, we currently do not have a mobile version of our game but we will be addressing this in the future. What kind of other games do you like to play on mobile devices?
member
Activity: 70
Merit: 10
I cant play from my Browser ( Mobile ) ,
Can you Desaign for Mobile ,
full member
Activity: 229
Merit: 100
CakeBet Bitcoin Casino
btw your site design is very good  Cheesy

Thanks luupy! If you have any feedback, let me know.

We are currently running a new signup bonus on Reddit, check it out.
Pages:
Jump to: