Dennis7777
|
|
February 05, 2015, 04:50:30 PM |
|
Woow the Jackpot is ~ 0.62 btc , Who wants it ?
I do , what are the requirments to get the jackpot 0.0001 btc bet? Yup. You just need to make some 0.0001 (or above) bets and some pretty good luck. Jackpot: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) { $hash = sha1($serverSeed . '-' . $clientSeed . '-' . $incrementalNonce); return substr($hash, 0, 5) == '00000'; }
|
|
|
|
redsn0w
Legendary
Offline
Activity: 1778
Merit: 1043
#Free market
|
|
February 05, 2015, 04:50:35 PM |
|
Woow the Jackpot is ~ 0.62 btc , Who wants it ?
I do , what are the requirments to get the jackpot 0.0001 btc bet? Yes, as write in the site (FAQ section) : "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"
|
|
|
|
pureelite
|
|
February 05, 2015, 04:53:13 PM |
|
Woow the Jackpot is ~ 0.62 btc , Who wants it ?
I do , what are the requirments to get the jackpot 0.0001 btc bet? Yes, as write in the site (FAQ section) : "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" thanks redsnow but this is just a miracle to hit 1mil odd...i cant hit 100x LOL not 1000000x
|
|
|
|
redsn0w
Legendary
Offline
Activity: 1778
Merit: 1043
#Free market
|
|
February 05, 2015, 05:30:59 PM |
|
Woow the Jackpot is ~ 0.62 btc , Who wants it ?
I do , what are the requirments to get the jackpot 0.0001 btc bet? Yes, as write in the site (FAQ section) : "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" thanks redsnow but this is just a miracle to hit 1mil odd...i cant hit 100x LOL not 1000000x You're welcome , thanks also to @Dennis7777 (he was more fast than me ).
For the question of the probability (1 :1,048,575) at the end it is only a question of luck.
|
|
|
|
redsn0w
Legendary
Offline
Activity: 1778
Merit: 1043
#Free market
|
|
February 08, 2015, 08:53:42 PM |
|
No one still won the jackpot, that's amazing! I will try for sure but at the moment I don't have bitcoin.
|
|
|
|
Joca97
Legendary
Offline
Activity: 3794
Merit: 1030
The Best Tipster on the Forum!!
|
|
February 08, 2015, 08:55:44 PM |
|
No one still won the jackpot, that's amazing! I will try for sure but at the moment I don't have bitcoin.
lol where are all of those bitcoins you won on coinichiwa you lost them ? or you wasted them?
|
Best betting Tipster on the forum by far!! Join my telegram channel for free https://t.me/joca97freepicks and checkout the free predictions daily!!
|
|
|
coingamblingreviews
Legendary
Offline
Activity: 1043
Merit: 1032
★Bitcoin Gambling Reviews★
|
|
February 08, 2015, 10:00:29 PM |
|
No one still won the jackpot, that's amazing! I will try for sure but at the moment I don't have bitcoin.
What's the Jackpot at now?
|
|
|
|
redsn0w
Legendary
Offline
Activity: 1778
Merit: 1043
#Free market
|
|
February 08, 2015, 10:06:33 PM |
|
No one still won the jackpot, that's amazing! I will try for sure but at the moment I don't have bitcoin.
What's the Jackpot at now? At the moment the jackpot is : 0.66750297 BTC (and it is still growing). For win it you have wagered at least 0.0001 each roll and the possibility to win is 1:1,048,575 . Good luck guys.
|
|
|
|
gyo9i
|
|
February 08, 2015, 10:14:04 PM |
|
No one still won the jackpot, that's amazing! I will try for sure but at the moment I don't have bitcoin.
What's the Jackpot at now? At the moment the jackpot is : 0.66750297 BTC (and it is still growing). For win it you have wagered at least 0.0001 each roll and the possibility to win is 1:1,048,575 . Good luck guys. It is hard to win
|
|
|
|
shorena
Copper Member
Legendary
Offline
Activity: 1498
Merit: 1540
No I dont escrow anymore.
|
|
February 10, 2015, 02:45:48 PM |
|
Since it was recently asked on the chat if the verification can be done externally Ill post this here, maybe someone can verify that its working properly. #!/bin/ruby -w
require 'digest/sha1'
$verbose = false $server_seed = "be550440770a09e97fffa4d8460f37d" $client_seed = "kKF09tvtY4ixjX" $end_nounce = 10 $start_nounce = 1
def simulate_roll(server_seed, client_seed, nounce) # must be defined here to use it later converted_reduced_hashed_string = 0 # concat seeds and nounce to a single string seed = "#{server_seed}-#{client_seed}-#{nounce}" puts "seed: #{seed}" if $verbose loop do # hash string seed = Digest::SHA1.hexdigest(seed) puts "sha1(seed): #{seed}" if $verbose # keep only the first 8 digits reduced_hashed_string = seed[0..7] puts "sha1(seed)[0..7]: #{reduced_hashed_string}" if $verbose # convert 8 hex digits to Integer converted_reduced_hashed_string = reduced_hashed_string.to_i(16) puts "sha1(seed)[0..7] to int: #{converted_reduced_hashed_string}" if $verbose # remove bais towards rolls <= 72.96 # this must be done because the max value of 8 hexdigits # is 16**8 = 4294967296 and thus a mod 10k would prefer # said rolls break if (converted_reduced_hashed_string <= 4294960000) end # modulo 10000 the final integer modulo_10000_of_converted_reduced_hashed_string = converted_reduced_hashed_string % 10000 puts "sha1(...)[0..7] to int % 10000: #{modulo_10000_of_converted_reduced_hashed_string}" if $verbose return modulo_10000_of_converted_reduced_hashed_string end
puts "Server seed: #{$server_seed}" puts "Server seed hash: #{Digest::SHA1.hexdigest($server_seed)}" puts "Client seed: #{$client_seed}"
for i in $start_nounce..$end_nounce puts "Roll \##{i}: #{simulate_roll($server_seed, $client_seed, i).to_s.rjust(4,'0')}" end
Example output: Server seed: be550440770a09e97fffa4d8460f37d Server seed hash: 57bf8129885d81c14f8245d84a0cb9ef810afe2d Client seed: kKF09tvtY4ixjX Roll #1: 4071 Roll #2: 0006 Roll #3: 6477 Roll #4: 1594 Roll #5: 1705 Roll #6: 7041 Roll #7: 7053 Roll #8: 3547 Roll #9: 5041 Roll #10: 7685
|
Im not really here, its just your imagination.
|
|
|
izanagi narukami
Legendary
Offline
Activity: 2030
Merit: 1028
|
|
February 10, 2015, 02:51:17 PM |
|
No one still won the jackpot, that's amazing! I will try for sure but at the moment I don't have bitcoin.
What's the Jackpot at now? At the moment the jackpot is : 0.66750297 BTC (and it is still growing). For win it you have wagered at least 0.0001 each roll and the possibility to win is 1:1,048,575 . Good luck guys. It must be wagered on same day or it will roll over for next day ?
|
|
|
|
von183
Newbie
Offline
Activity: 6
Merit: 0
|
|
February 10, 2015, 05:11:21 PM |
|
Sites rigged to hell. 66% chance of winning, i lost 10 in A row, gtfohhhhhhh !
|
|
|
|
BoXXoB
Legendary
Offline
Activity: 2018
Merit: 1108
|
|
February 10, 2015, 05:20:08 PM |
|
This site has actually became quite a success, found the quick bets really good.
|
|
|
|
BoXXoB
Legendary
Offline
Activity: 2018
Merit: 1108
|
|
February 10, 2015, 05:23:38 PM |
|
Sites rigged to hell. 66% chance of winning, i lost 10 in A row, gtfohhhhhhh !
That only proves you are unlucky...
|
|
|
|
lolled
|
|
February 10, 2015, 05:29:38 PM |
|
Whats the number of confirmations required(on deposit) to withdraw an amount after deposit ?
|
|
|
|
elephantas1
|
|
February 10, 2015, 05:39:59 PM |
|
Whats the number of confirmations required(on deposit) to withdraw an amount after deposit ?
on the site it clearly say that: 0.0001 BTC will be deducted from the amount you type for use as a transaction fee. Withdraws are processed not till all your deposits have 4 confirmations.
|
|
|
|
redsn0w
Legendary
Offline
Activity: 1778
Merit: 1043
#Free market
|
|
February 10, 2015, 05:46:58 PM |
|
Whats the number of confirmations required(on deposit) to withdraw an amount after deposit ?
on the site it clearly say that: 0.0001 BTC will be deducted from the amount you type for use as a transaction fee. Withdraws are processed not till all your deposits have 4 confirmations. Exactly, thanks for the help elephantas1 !
|
|
|
|
lolled
|
|
February 10, 2015, 05:53:47 PM |
|
Whats the number of confirmations required(on deposit) to withdraw an amount after deposit ?
on the site it clearly say that: 0.0001 BTC will be deducted from the amount you type for use as a transaction fee. Withdraws are processed not till all your deposits have 4 confirmations. Thanks Well, I didn't click on the withdraw button to read that. Might be good to have it in the FAQ
|
|
|
|
shorena
Copper Member
Legendary
Offline
Activity: 1498
Merit: 1540
No I dont escrow anymore.
|
|
February 10, 2015, 05:58:47 PM |
|
It must be wagered on same day or it will roll over for next day ?
Its per bet. You have to bet at least 0.0001 each roll.
|
Im not really here, its just your imagination.
|
|
|
michinzx
|
|
February 10, 2015, 10:05:44 PM |
|
jackpot up to over .7 now, so tempting to just .0001 bet on 1.01x
|
|
|
|
|