vit1988 (OP)
|
|
November 28, 2014, 12:04:10 AM |
|
It's a DDoS. I'm going to change the IP addresses and set up cloudflare instead of paying even a single satoshi to a shady blackmailer. I'm not going to rush things so let's say relaunch is scheduled for next week - couple of days downtime in the beta phase do not really hurt me. Quite contrary at least I will finaly get some sleep this weekend I'll be back for sure. Stay tuned.
|
|
|
|
omahapoker
|
|
November 28, 2014, 01:13:41 AM |
|
- Jackpot in its current state is quite pointless as it does not get big and I want a really big jackpot. I'm thinking about reducing the probability for hitting it to 1:1,000,000 and still require a minimum bet amount of 0.0001 to claim it. What do you think?
i say make it 10,000 to 1 still and let players tip into the jackpot. when many people win they like to giveaway BTC. i know nothing about that...but i've heard. some times the jackpot would be over 1btc. then you have everyone playing trying to his jackpot
|
|
|
|
omahapoker
|
|
November 28, 2014, 01:15:24 AM |
|
so people with balances should just wait till you relaunch?
|
|
|
|
seoincorporation
Legendary
Offline
Activity: 3332
Merit: 3116
|
|
November 28, 2014, 01:22:26 AM |
|
no faucet ? fail
no reading skills? double fail oh no, wait, lesson learned... should express that in a polite way: Yes, there is a faucet. If your balance is zero then you can claim 700 satoshi every minute. 700 satoshi every minute, nice faucet, I join try to koin to the site but "Website is offline" I will try later to play with that 700 sato faucet.
|
|
|
|
ttman
|
|
November 28, 2014, 01:54:27 AM |
|
so people with balances should just wait till you relaunch?
i also got some balance in there . wat to do , the only way is wait for relaunch
|
|
|
|
Jaaawsh
Sr. Member
Offline
Activity: 462
Merit: 250
Check out Fastslots.co !!!!
|
|
November 28, 2014, 03:28:17 AM |
|
Didn't play today been busy, but played the last few days. This site has a really cool owner and is pretty fun if you wanna play dice I would recommend it!
|
|
|
|
SpreadBit
Full Member
Offline
Activity: 154
Merit: 100
SatoshiBet.com ✯ Bitcoin Casino Games
|
|
November 28, 2014, 03:36:38 AM |
|
Nice one, will try to do some giveaways for your site. Cheers.
|
|
|
|
btcmaze
|
|
November 28, 2014, 08:53:18 AM |
|
The site looks interesting. Will try it soon..
|
|
|
|
vit1988 (OP)
|
|
December 02, 2014, 10:09:39 AM |
|
back again btw
|
|
|
|
vit1988 (OP)
|
|
December 08, 2014, 09:51:04 PM |
|
*** UPDATE *** Jackpot:Jackpot is back with a adjusted probability. With each bet 0.1% of the bet amount goes right into the jackpot. You hit the jackpot if your seed meets a certain criteria and you have wagered at least 0.0001 for this particular roll. The probability for this to happen is 1:1,048,575 and the exact algorithm is: function isJackpotHit($serverSeed, $clientSeed, $incrementalNonce) { $seed = $serverSeed . '-' . $clientSeed . '-' . $incrementalNonce; return substr($seed, 0, 5) == '00000'; }
LeaderboardCheck out who has made the most rolls, profit or wagered amount. Automated bettingThe simple autobet checkbox was replaced with an extensive control panel Hot keysSet up your personal keymap in settings to access all bet functionality with your prefered keys.
|
|
|
|
canary
|
|
December 08, 2014, 09:53:47 PM |
|
Sweet name, the site has a potential to move on. Good luck with it!
|
|
|
|
NLNico
Legendary
Offline
Activity: 1876
Merit: 1295
DiceSites.com owner
|
|
December 09, 2014, 05:34:14 AM |
|
Jackpot:Jackpot is back with a adjusted probability. With each bet 0.1% of the bet amount goes right into the jackpot. You hit the jackpot if your seed meets a certain criteria and you have wagered at least 0.0001 for this particular roll. The probability for this to happen is 1:1,048,575 and the exact algorithm is: function isJackpotHit($serverSeed, $clientSeed, $incrementalNonce) { $seed = $serverSeed . '-' . $clientSeed . '-' . $incrementalNonce; return substr($seed, 0, 5) == '00000'; }
You are now just using the first 5 characters of the serverseed to check the jackpot. I assume you are missing the sha1 function.
|
|
|
|
omahapoker
|
|
December 09, 2014, 05:41:37 AM |
|
sites looking good. i'm still up 0.15
|
|
|
|
drfiber
Member
Offline
Activity: 72
Merit: 10
|
|
December 09, 2014, 06:09:17 AM |
|
is this comparable to primedice?
|
|
|
|
vit1988 (OP)
|
|
December 09, 2014, 06:58:14 AM |
|
Jackpot:Jackpot is back with a adjusted probability. With each bet 0.1% of the bet amount goes right into the jackpot. You hit the jackpot if your seed meets a certain criteria and you have wagered at least 0.0001 for this particular roll. The probability for this to happen is 1:1,048,575 and the exact algorithm is: function isJackpotHit($serverSeed, $clientSeed, $incrementalNonce) { $seed = $serverSeed . '-' . $clientSeed . '-' . $incrementalNonce; return substr($seed, 0, 5) == '00000'; }
You are now just using the first 5 characters of the serverseed to check the jackpot. I assume you are missing the sha1 function. You are absolutely right. Indeed it is: function isJackpotHit($serverSeed, $clientSeed, $incrementalNonce) { $hash = sha1($serverSeed . '-' . $clientSeed . '-' . $incrementalNonce); return substr($hash, 0, 5) == '00000'; }
|
|
|
|
vit1988 (OP)
|
|
December 09, 2014, 10:14:01 PM |
|
is this comparable to primedice?
depends on what you want to compare. it's much faster than primedice for example
|
|
|
|
omahapoker
|
|
December 09, 2014, 10:36:20 PM |
|
yeah i like the speed of site.what other features are you going to add to site?
|
|
|
|
sickhouse
|
|
December 10, 2014, 12:48:12 AM |
|
Very nice idea with the jackpot, but the design of the site man... You need to change some of the colors to make it look more attractive design-wise.
|
Turn off the news and read. Watch Psywar, learn something important about our society and PR, why and how it got started and how it brainwashes you.
|
|
|
koshgel
Legendary
Offline
Activity: 1162
Merit: 1001
|
|
December 10, 2014, 12:50:57 AM |
|
Jackpot is baaack! I hadn't played since it was gone. Time to roll
|
|
|
|
Clint
|
|
December 10, 2014, 01:32:15 AM |
|
good thing jackpot is back.. gonna play to it again
|
|
|
|
|