Pages:
Author

Topic: CRYPTOSDICE - Custom lucky interval - 1% House edge - 40+ Coins - PLAY / INVEST - page 4. (Read 8046 times)

hero member
Activity: 854
Merit: 503
an autobet would be nice.
otherwise to play on your site take too much time.
sr. member
Activity: 244
Merit: 250
still no way to verify the provably fair. Was trying to verify my bets manually, but was not successful. Sketchy.

unfortunately there is no way to verify the outcome manually and it showing really strange result, so they must improve their provably fair to make it more reliable for players, it will bring more positive result to this dice sites and will catch attention from big whales to play there.

I was honestly thinking about investing here, but the provably fair system is not transparent enough.

We guarantee you that it is provably fair. Tell us what other information you need to verify it and we are going to improve he site.

Thanks

Please post the code you use to calculate the roll number, so I can verify the rolls myself. I cannot implement your algorithm from the description in the help section, the numbers I get are inconsistent.

Note: We need the whole algo, that takes in seeds and spits out a roll number, in code. No text description.
Ok, this is the code that CRYPTOSDICE use to generate the lucky number of a bet


Thanks, will try to construct a verifier soon. I wish your site all the best, seems to be picking up steam a bit.


Just FYI,, you have a few minor bugs in the code:
- the loop to find the resulting roll may loop over the length of the string and not produce a valid number
- since you are reusing the server key for many bets, the best practice is to place it in the key field, not the data field of the HMAC (Key fields may be reused).
- your server seed key length is small, I would increase it
full member
Activity: 128
Merit: 100
still no way to verify the provably fair. Was trying to verify my bets manually, but was not successful. Sketchy.

unfortunately there is no way to verify the outcome manually and it showing really strange result, so they must improve their provably fair to make it more reliable for players, it will bring more positive result to this dice sites and will catch attention from big whales to play there.

I was honestly thinking about investing here, but the provably fair system is not transparent enough.

We guarantee you that it is provably fair. Tell us what other information you need to verify it and we are going to improve he site.

Thanks

Please post the code you use to calculate the roll number, so I can verify the rolls myself. I cannot implement your algorithm from the description in the help section, the numbers I get are inconsistent.

Note: We need the whole algo, that takes in seeds and spits out a roll number, in code. No text description.

Ok, this is the code that CRYPTOSDICE use to generate the lucky number of a bet:

Code:

//Combine client seed with nonce
$key $clientSeed.':'.$nonce;

//Calcualte hash
$hash hash_hmac('sha256'$serverSeed$key);

//Take the first 5 characters and transform to integer
$index 0;
$result intval(hexdec(substr($hash$index 55)));

//keep grabbing characters from the hash while greater than 1000000
while ($result >= 1000000) {
    
$index++;
    
$result intval(hexdec(substr($hash$index 55)));
}

//Transform to number of 4 digits
$lucky intval($result/100);
sr. member
Activity: 429
Merit: 263
I locked my investment for 10 days last night it had 1 day left, when I woke up today it had 10 days again......?

you can withdraw? it is interesting for me.

I think he is right about it being a glitch because I was able to divest it but I didn't want to withdraw so I just reinvested it and set lock for 3 days and it says 13 days.


Solved! If you find other bugs, please report at Suport

Confirmed fix
sr. member
Activity: 244
Merit: 250
still no way to verify the provably fair. Was trying to verify my bets manually, but was not successful. Sketchy.

unfortunately there is no way to verify the outcome manually and it showing really strange result, so they must improve their provably fair to make it more reliable for players, it will bring more positive result to this dice sites and will catch attention from big whales to play there.

I was honestly thinking about investing here, but the provably fair system is not transparent enough.

We guarantee you that it is provably fair. Tell us what other information you need to verify it and we are going to improve he site.

Thanks

Please post the code you use to calculate the roll number, so I can verify the rolls myself. I cannot implement your algorithm from the description in the help section, the numbers I get are inconsistent.

Note: We need the whole algo, that takes in seeds and spits out a roll number, in code. No text description.
full member
Activity: 128
Merit: 100
still no way to verify the provably fair. Was trying to verify my bets manually, but was not successful. Sketchy.

unfortunately there is no way to verify the outcome manually and it showing really strange result, so they must improve their provably fair to make it more reliable for players, it will bring more positive result to this dice sites and will catch attention from big whales to play there.

I was honestly thinking about investing here, but the provably fair system is not transparent enough.

We guarantee you that it is provably fair. Tell us what other information you need to verify it and we are going to improve he site.

Thanks
full member
Activity: 128
Merit: 100
I locked my investment for 10 days last night it had 1 day left, when I woke up today it had 10 days again......?

you can withdraw? it is interesting for me.

I think he is right about it being a glitch because I was able to divest it but I didn't want to withdraw so I just reinvested it and set lock for 3 days and it says 13 days.


Solved! If you find other bugs, please report at Suport
sr. member
Activity: 244
Merit: 250
still no way to verify the provably fair. Was trying to verify my bets manually, but was not successful. Sketchy.

unfortunately there is no way to verify the outcome manually and it showing really strange result, so they must improve their provably fair to make it more reliable for players, it will bring more positive result to this dice sites and will catch attention from big whales to play there.

I was honestly thinking about investing here, but the provably fair system is not transparent enough.
hero member
Activity: 854
Merit: 503
I locked my investment for 10 days last night it had 1 day left, when I woke up today it had 10 days again......?

you can withdraw? it is interesting for me.

I think he is right about it being a glitch because I was able to divest it but I didn't want to withdraw so I just reinvested it and set lock for 3 days and it says 13 days.

ok thx for your advise Smiley i think also about an investment.
legendary
Activity: 1008
Merit: 1000
still no way to verify the provably fair. Was trying to verify my bets manually, but was not successful. Sketchy.

unfortunately there is no way to verify the outcome manually and it showing really strange result, so they must improve their provably fair to make it more reliable for players, it will bring more positive result to this dice sites and will catch attention from big whales to play there.
sr. member
Activity: 429
Merit: 263
I locked my investment for 10 days last night it had 1 day left, when I woke up today it had 10 days again......?

you can withdraw? it is interesting for me.

I think he is right about it being a glitch because I was able to divest it but I didn't want to withdraw so I just reinvested it and set lock for 3 days and it says 13 days.
hero member
Activity: 854
Merit: 503
I locked my investment for 10 days last night it had 1 day left, when I woke up today it had 10 days again......?

you can withdraw? it is interesting for me.
sr. member
Activity: 244
Merit: 250
still no way to verify the provably fair. Was trying to verify my bets manually, but was not successful. Sketchy.
full member
Activity: 128
Merit: 100
I locked my investment for 10 days last night it had 1 day left, when I woke up today it had 10 days again......?

probably an error of visualization. If you try to divest, it should work.
sr. member
Activity: 429
Merit: 263
I locked my investment for 10 days last night it had 1 day left, when I woke up today it had 10 days again......?
full member
Activity: 128
Merit: 100
your faucet dont really work.
i have zero balance on bitb but i cant get a faucet.

and your site have no autobet or?


At some point a faucet may dry, if there are no new bets for that currency.
Try some other currency.

We don't offer autobet feature for now, but you can try the hotkeys mode if you want to bet fast.

lol this means your bankroll is 0???

No, you can see the bankroll amount goint to INVEST page, we don't use the bankroll amount for the faucet.
hero member
Activity: 854
Merit: 503
your faucet dont really work.
i have zero balance on bitb but i cant get a faucet.

and your site have no autobet or?


At some point a faucet may dry, if there are no new bets for that currency.
Try some other currency.

We don't offer autobet feature for now, but you can try the hotkeys mode if you want to bet fast.

lol this means your bankroll is 0???
full member
Activity: 128
Merit: 100
your faucet dont really work.
i have zero balance on bitb but i cant get a faucet.

and your site have no autobet or?


At some point a faucet may dry, if there are no new bets for that currency.
Try some other currency.

We don't offer autobet feature for now, but you can try the hotkeys mode if you want to bet fast.
hero member
Activity: 854
Merit: 503
your faucet dont really work.
i have zero balance on bitb but i cant get a faucet.

and your site have no autobet or?
hero member
Activity: 854
Merit: 503
thank you. now i can test your service^^
Pages:
Jump to: