BillyBurns
|
|
September 01, 2016, 05:23:59 PM |
|
I locked my investment for 10 days last night it had 1 day left, when I woke up today it had 10 days again......?
|
*Image Removed*
|
|
|
cryptosdice (OP)
|
|
September 01, 2016, 08:07:03 PM |
|
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.
|
|
|
|
rambeazle
|
|
September 02, 2016, 07:42:57 AM |
|
still no way to verify the provably fair. Was trying to verify my bets manually, but was not successful. Sketchy.
|
|
|
|
cypher21
|
|
September 02, 2016, 08:15:03 AM |
|
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.
|
|
|
|
BillyBurns
|
|
September 02, 2016, 08:29:55 AM |
|
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.
|
*Image Removed*
|
|
|
trafficolaa
Legendary
Offline
Activity: 1008
Merit: 1000
|
|
September 02, 2016, 08:36:06 AM |
|
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.
|
|
|
|
cypher21
|
|
September 02, 2016, 08:45:36 AM |
|
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 i think also about an investment.
|
|
|
|
rambeazle
|
|
September 02, 2016, 09:03:11 AM |
|
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.
|
|
|
|
cryptosdice (OP)
|
|
September 02, 2016, 02:02:11 PM |
|
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
|
|
|
|
cryptosdice (OP)
|
|
September 02, 2016, 02:04:02 PM |
|
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
|
|
|
|
rambeazle
|
|
September 02, 2016, 02:15:42 PM |
|
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.
|
|
|
|
BillyBurns
|
|
September 03, 2016, 01:57:26 AM |
|
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 SuportConfirmed fix
|
*Image Removed*
|
|
|
cryptosdice (OP)
|
|
September 06, 2016, 07:08:16 AM |
|
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:
<?php
//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 * 5, 5)));
//keep grabbing characters from the hash while greater than 1000000 while ($result >= 1000000) { $index++; $result = intval(hexdec(substr($hash, $index * 5, 5))); }
//Transform to number of 4 digits $lucky = intval($result/100);
|
|
|
|
rambeazle
|
|
September 06, 2016, 07:16:43 AM |
|
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
|
|
|
|
cypher21
|
|
September 06, 2016, 07:23:01 AM |
|
an autobet would be nice. otherwise to play on your site take too much time.
|
|
|
|
RichGang
|
|
September 06, 2016, 07:53:20 AM |
|
How credible are u? As a player, how am i sure u will pay me when i win say 10btc and above. Also,as an investor, how am i sure u wont run if i invest 30btc
|
I REVIEW BTC CASINOS
|
|
|
cryptosdice (OP)
|
|
September 09, 2016, 11:12:56 AM |
|
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 [/quote]
Thanks for your feedback, we will improve the code with your suggestions.
|
|
|
|
cryptosdice (OP)
|
|
September 17, 2016, 11:21:27 AM |
|
Almost 150000 bets done!
Remember that we offer very competitive 100% welcome bonus for every currency!
|
|
|
|
maku
Legendary
Offline
Activity: 1288
Merit: 1000
|
|
September 17, 2016, 11:38:40 AM Last edit: September 17, 2016, 11:49:38 AM by maku |
|
I would like to invest, but how do I know for sure my money is safe? 2FA would resolve that.
I only see the option to invest in bitcoin, is that normal?
You don't know that and if you check their Terms of Service it is clearly stated that they can lose your money and have no obligation to give back anything. Basically it is their privilege due to limited liability. You can read their ToS to confirm that: "7.1. Under no circumstances, including negligence, shall Cryptosdice be liable for any special, incidental, direct, indirect or consequential damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use (or misuse) of the Service even if Cryptosdice had prior knowledge of the possibility of such damages."
|
|
|
|
cryptosdice (OP)
|
|
September 18, 2016, 03:37:35 PM |
|
Peercoin bets and faucet activated!
|
|
|
|
|