Bitcoin Forum
June 16, 2024, 06:50:10 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Bitcoin Technical Support / Math behind crash game multiplier generation on: August 14, 2019, 06:12:29 PM
Code:

exports.crashPointFromHash = function(serverSeed) { // TODO: check the probablity of instant crash everywhere
    var hash = crypto.createHmac('sha256', serverSeed).update(clientSeed).digest('hex');
 
    // In 1 of 101 games the game crashes instantly.
    if (divisible(hash, 101))
        return 0;
 
    // Use the most significant 52-bit from the hash to calculate the crash point
    var h = parseInt(hash.slice(0,52/4),16);
    var e = Math.pow(2,52);
 
    return Math.floor((100 * e - h) / (e - h));
};

Ignore all the hash related code, all it does is generate h such that h is uniform in [ 0 , 2^52 - 1]
e is 2^52


How would I find the expected value from this algorithm?
What is the probability density function?
How would I change the house edge?
Is it only " if (divisible(hash, 101)) return 0;" that gives the house an advantage?

Initially I thought it would be exponentially distributed but it's not

When doing simulations it seems that the edge is around 2% but even when removing the divisible by 101 code, the edge is around 1% and I don't understand where it comes from

Can somebody provide a deeper math insight in this? How did they come up with this way of generating crash points?
2  Economy / Digital goods / Selling Primedice.net domain on: August 07, 2019, 04:23:27 AM
Selling primedice.net domain

If anyone is interested, please PM

I'm not concerned about how you plan to use it

Thanks
3  Economy / Gambling / How to accept payments for BTC casino? on: January 17, 2018, 01:17:50 AM
I'm currently writing a BTC casino but I'm not entirely sure how to accept the payments? I know there's payment gateways but the other dice sites seem to be doing it directly.

I suppose they are using some APIs, could someone tell me which ones are best?
4  Bitcoin / Project Development / Re: Buying BTC Dice Consulting $100/hour on: December 04, 2017, 08:45:06 AM
I have a lot of business consulting experience, however I have never ran a dice site. I still think though I could be of help, so PM me if you are interested.

I'm not looking for general business consulting, I'm looking for btc gambling consulting
5  Bitcoin / Project Development / Buying BTC Dice Consulting $100/hour on: December 03, 2017, 09:59:43 PM
I am looking for someone who is quite knowledgable in the btc gambling industry to answer many of my questions.

I'm considering starting a dice site so wanted to get someone with experience to tell me what to do and what not to do.

The person needs to be able to show that he knows the industry quite well, the person should have ran or been part of a dice site before or currently running.

I'm basically paying for answers to my questions.

If interested, Post or PM!

Best regards
6  Bitcoin / Project Development / Re: Looking to buy a small/medium dice site or receive help to start one on: September 17, 2017, 07:29:13 PM
there are many for sale...depends on wat u r looking for..some old ones have ready customers..all depends on ya budget

Where do I find them?
7  Bitcoin / Project Development / Re: Looking to buy a small/medium dice site or receive help to start one on: September 17, 2017, 07:12:06 PM
Dear Members,

I'm new to the Bitcointalk but I'm quite experienced
in programming and online marketing. I've ran a few projects before in different industries.
I have quite a bit of capital made from the previous projects and I wanted to start an online betting site.


I am considering 2 options, either to buy an existing site & try to boost its popularity
OR
build the site from scratch together with someone.

I was hoping to speak with someone about this. I can even pay for the consulting itself.

If you've built any betting sites before (doesn't matter, small or big) & are willing to sell the site or provide advice/help with building, please let me know.

With bitcoin gambling sites you need to remember one important thing.

Even if you are skilled and can create the bets gambling site ever, the one thing you absolutely need is capital.

You will need at least  > 25BTC to start one and you need to prove this solvency on the blockchain.

Without enough capital you won't get any gamblers.

I can invest 50k USD in the site, that's not a problem but if I could find people who would be willing to invest too, that would be nice
8  Bitcoin / Project Development / Looking to buy a small/medium dice site or receive help to start one on: September 17, 2017, 04:19:53 PM
Dear Members,

I'm new to the Bitcointalk but I'm quite experienced
in programming and online marketing. I've ran a few projects before in different industries.
I have quite a bit of capital made from the previous projects and I wanted to start an online betting site.


I am considering 2 options, either to buy an existing site & try to boost its popularity
OR
build the site from scratch together with someone.

I was hoping to speak with someone about this. I can even pay for the consulting itself.

If you've built any betting sites before (doesn't matter, small or big) & are willing to sell the site or provide advice/help with building, please let me know.


My personal budget: 50K USD
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!