NOT LAUNCHED YET!
WE ARE WORKING FOR AN UPGRADE!!!Hello.
I opened bitcoin dice, but
with double chance to win.
Example:
If you lose 0.10000000
BTC, you can recover 10% - 50%.
http://wishdice.com/You can use our faucet (500 satoshi untill I'll add google captcha).
Also the game is
provably fair. The CLIENT seed and SERVER seed is generating by server. Your client seed can be changed from your account link
http://wishdice.com/cont/ :
$clientSeed="Your_client_seed";
$serverSeed="Server_seed";
$globalSeedVarchar=$clientSeed.$serverSeed;
$validSeedChar=array(
"a","b","c","d","e","f","g","h","i","k","j","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9"
);
$globalSeedInt=0;
for ($i=0; $i<strlen($globalSeedVarchar); $i++) {
$char=substr($globalSeedVarchar,$i,1);
$addThis=intval(array_search(strtolower($char),$validSeedChar));
if (ctype_upper($char)) {
$changeThis=strlen($globalSeedVarchar);
$globalSeedInt=$globalSeedInt+($addThis*$changeThis);
} else {
$globalSeedInt=$globalSeedInt+$addThis;
}
}
srand($globalSeedInt);
$roll=number_format((rand(1,10000)/100),2,'.','');
echo $roll;
You can verify very simple. Paste the code here:
http://writecodeonline.com/php/ and add the client and server seed, then you will get the roll number.