Bitcoin Forum
May 25, 2024, 02:00:11 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 »
  Print  
Author Topic: BITDICE.ME - REGISTERED CASINO.  (Read 52269 times)
dooglus
Legendary
*
Offline Offline

Activity: 2940
Merit: 1330



View Profile
March 25, 2015, 06:12:00 AM
 #101

It happened again. Even though it says right on the table that the dealer hits soft 17:

...

I bet 1 CLAM, was dealt 11 vs. dealer's 3, so I doubled, the dealer got soft 17, stood, and won!

...

Such sadness. Sad

I tried verifying this hand to see whether I would have won or not if the game wasn't buggy, but I couldn't get it to verify.

First I tried using the Ruby code from the FAQ:



but it won't even run. It complains:


    bitdice.rb:7:in `<main>': uninitialized constant Digest (NameError)


so it looks like the code isn't really complete. I don't know much Ruby at all, but I was able to get past that by adding:


    require 'digest/sha1'


Then it complained:


    bitdice.rb:13:in `<main>': undefined local variable or method `initial_deck' for main:Object (NameError)


so I added a definition for the initial deck.

I finished up with this:

Code:
SECRET='7fc84a2d8dbf0d50b79bd771677354dd85b1b64129f6f54f7fb4def6973aba2598044eaa826a6020d41be7ec255e88b43c1b0afc2522c657aa6922b7852414d6'
USER_SEED='everymagicseed'
USER_ID='8798'
USER_BET_NUMBER='73'

require 'digest/sha1'

# generates bet hash string
bet_hash = Digest::SHA512.hexdigest (SECRET + ':' + USER_SEED + ':' + USER_ID + ':' + USER_BET_NUMBER)
# bet_hash = '49dde939d58d494f4dbb3a510b86abe4f62d2c17a6a83bb3f5f9991a47cdac77b38008f8caf6938c6e491e6fd54ab020b1b961c787fd296cad4b2cae4ce540f6'
# pass hash to Mersenne Twister
print 'bet_hash: ', bet_hash, "\n"
@random = Random.new(bet_hash.to_i(16))

deck = ['AS', '2S', '3S', '4S', '5S', '6S', '7S', '8S', '9S', '10S', 'JS', 'QS', 'KS',
        'AH', '2H', '3H', '4H', '5H', '6H', '7H', '8H', '9H', '10H', 'JH', 'QH', 'KH',
        'AD', '2D', '3D', '4D', '5D', '6D', '7D', '8D', '9D', '10D', 'JD', 'QD', 'KD',
        'AC', '2C', '3C', '4C', '5C', '6C', '7C', '8C', '9C', '10C', 'JC', 'QC', 'KC'] * 8

# shuffle deck
deck.shuffle!(random: @random)

# now deck contains shuffled deck
print deck, "\n"

and it outputs this:

Code:
bet_hash: 49dde939d58d494f4dbb3a510b86abe4f62d2c17a6a83bb3f5f9991a47cdac77b38008f8caf6938c6e491e6fd54ab020b1b961c787fd296cad4b2cae4ce540f6
["7C", "4D", "2S", "10S", "9C", "8H", "AC", "5H", "3H", "6S", "9S", "8D", "5C", "7C", "3H", "9H", "QH", "2S", "8S", "9H", "KH", "4S", "9S", "8C", "KS", "5S", "7C", "4S", "QS", "QC", "10H", "JH", "JH", "KS", "7D", "7D", "6C", "QH", "4S", "4D", "7H", "KS", "AS", "3C", "2S", "AS", "QH", "8H", "7S", "3C", "5D", "2D", "5D", "JD", "QS", "JD", "QS", "9D", "9D", "2D", "JH", "2C", "9C", "2D", "7H", "6C", "8C", "7C", "8S", "JD", "7S", "9H", "3S", "8S", "7S", "4H", "7D", "8D", "6S", "KH", "AC", "QD", "KH", "QC", "3D", "3S", "8H", "3D", "3H", "4C", "QS", "QS", "6D", "9H", "8S", "JD", "AC", "3D", "JH", "4S", "5D", "2D", "AH", "7S", "3D", "6S", "5S", "5C", "QD", "8C", "5C", "KC", "6C", "4H", "AD", "KS", "5C", "7C", "5D", "7H", "AD", "JD", "2D", "4S", "6H", "3H", "2C", "6S", "QD", "6D", "QS", "AD", "5S", "3H", "AD", "6H", "9H", "8S", "3C", "2H", "2H", "6C", "5D", "7S", "2H", "QC", "4D", "9S", "6H", "7H", "JS", "6S", "8H", "KD", "6C", "6D", "7D", "10C", "10S", "QD", "9D", "2D", "QD", "2C", "4D", "10H", "9D", "3C", "AC", "KC", "KC", "8C", "JS", "QS", "6D", "9H", "JC", "3C", "KD", "7S", "JS", "10C", "8S", "5H", "6C", "6H", "5H", "2H", "2S", "4C", "9D", "2H", "3D", "JC", "JH", "AS", "AS", "9D", "5H", "KS", "KH", "3H", "AD", "8H", "8H", "3C", "10C", "5S", "10C", "3S", "6H", "5D", "AD", "5H", "9C", "4H", "KH", "4H", "10D", "2D", "JH", "3S", "10H", "7H", "10D", "AC", "JH", "6D", "QC", "6H", "10S", "4S", "4C", "AH", "10C", "4D", "10S", "JC", "10D", "5C", "8C", "KD", "AH", "KD", "4H", "10D", "KC", "AH", "KD", "8D", "7H", "8H", "10H", "AH", "6H", "QH", "4D", "9S", "5H", "10D", "9C", "8S", "2S", "3D", "10H", "JC", "8D", "QC", "7D", "JS", "JD", "7D", "JS", "7C", "4C", "6H", "9H", "4C", "8H", "KS", "8D", "QC", "2S", "4S", "10H", "8D", "QC", "4H", "JS", "8C", "10C", "5S", "AC", "6D", "9C", "10H", "3C", "9D", "5C", "2C", "6S", "5H", "JC", "AH", "9S", "KC", "AS", "9S", "5H", "5S", "AD", "10D", "6D", "AS", "KD", "5S", "6S", "3D", "4C", "AH", "8C", "5S", "AS", "10D", "9D", "10H", "JH", "4H", "7H", "7H", "JD", "5C", "JS", "6C", "AS", "QS", "10D", "9C", "KC", "5D", "9H", "2H", "4C", "QD", "AC", "2C", "9S", "7D", "2C", "2C", "9C", "2H", "2C", "5D", "QH", "JS", "3H", "3H", "9C", "KD", "10S", "AH", "4S", "KH", "QH", "QH", "10S", "QD", "10S", "KH", "KD", "6C", "KS", "JC", "4C", "4D", "4D", "2S", "2S", "4H", "QH", "3C", "7S", "3S", "3S", "KC", "JD", "6D", "KS", "JC", "QC", "8C", "2D", "7C", "3S", "5C", "KH", "QD", "7S", "AC", "7C", "8S", "10S", "AD", "8D", "7D", "2H", "8D", "3S", "10C", "6S", "KC", "JC", "9S", "10C", "3D"]

Note that the 'bet hash' is the same as I see when I click the bet ID:



so at least the sha512 part of the code is getting the right hash. But I don't see how the final shuffle corresponds to the cards I was dealt. My first card was 9C, but there's no 9C near either end of the shuffled deck output.

What am I doing wrong now? Maybe the Ruby code in the FAQ could be improved so that it will actually run and give the same shuffle as the game is using.

Just-Dice                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   Play or Invest                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   1% House Edge
jpcfan
Hero Member
*****
Offline Offline

Activity: 905
Merit: 502

I miss dooglus


View Profile
March 25, 2015, 08:23:07 AM
 #102

if any dice site owners have a player who keeps on winning, me and doog can be hired to change that





today we made alex and investors 80btc





just another day to us.

120%50%    ████████
    ████████
  ████████
  ████████
████████
████████
████████
  ████████
  ████████
    ████████
    ████████
DUCK
▄▄█████████▄▄
▄██████████████████▄
▄█████████████████████████▄
▄█████████████████████████████▄
█████████████████████████████████
███████████████████████████████████
█████████████████████████████████████
█████████████████████████████████████
█████████████████████████████████████
█████████████████████████████████████
█████████████████████████████████████
█████████████████████████████████
█████████████████████████████████
▀█████████████████████████████▀
▀█████████████████████████▀
▀███████████████████▀
▀▀█████████▀▀
DICE████████
████████
  ████████
  ████████
    ████████
    ████████
    ████████
  ████████
  ████████
████████
████████
Bitdicesupport
Full Member
***
Offline Offline

Activity: 166
Merit: 100


View Profile
March 25, 2015, 08:40:15 AM
 #103


so at least the sha512 part of the code is getting the right hash. But I don't see how the final shuffle corresponds to the cards I was dealt. My first card was 9C, but there's no 9C near either end of the shuffled deck output.

What am I doing wrong now? Maybe the Ruby code in the FAQ could be improved so that it will actually run and give the same shuffle as the game is using.

Thank you for notifying us. I messaged Alex and he will have a look at the soft 17 issue and the provably fair code Smiley
Josepht
Hero Member
*****
Offline Offline

Activity: 1008
Merit: 515


View Profile WWW
March 25, 2015, 08:56:18 AM
 #104


so at least the sha512 part of the code is getting the right hash. But I don't see how the final shuffle corresponds to the cards I was dealt. My first card was 9C, but there's no 9C near either end of the shuffled deck output.

What am I doing wrong now? Maybe the Ruby code in the FAQ could be improved so that it will actually run and give the same shuffle as the game is using.

Thank you for notifying us. I messaged Alex and he will have a look at the soft 17 issue and the provably fair code Smiley
I already notified Alex of the soft 17 issue. He said that he has changed it.
Bitdicesupport
Full Member
***
Offline Offline

Activity: 166
Merit: 100


View Profile
March 25, 2015, 08:58:33 AM
 #105


so at least the sha512 part of the code is getting the right hash. But I don't see how the final shuffle corresponds to the cards I was dealt. My first card was 9C, but there's no 9C near either end of the shuffled deck output.

What am I doing wrong now? Maybe the Ruby code in the FAQ could be improved so that it will actually run and give the same shuffle as the game is using.

Thank you for notifying us. I messaged Alex and he will have a look at the soft 17 issue and the provably fair code Smiley
I already notified Alex of the soft 17 issue. He said that he has changed it.

Ah ok sounds good Smiley

Thank You!
waterpile
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500


View Profile
March 25, 2015, 09:21:31 AM
 #106

if any dice site owners have a player who keeps on winning, me and doog can be hired to change that





today we made alex and investors 80btc





just another day to us.

Did you hit a bad streak? How much did you loss?
fox19891989
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000



View Profile
March 25, 2015, 10:12:36 AM
 #107

Good site, I have noticed your site is online for a long time, and signature campaign pays well.

If I invest in house, can I earn profits from blackjack and roulette? Or only dice?

I am just trying your site, cool.  Grin
Josepht
Hero Member
*****
Offline Offline

Activity: 1008
Merit: 515


View Profile WWW
March 25, 2015, 10:32:02 AM
 #108

If I invest in house, can I earn profits from blackjack and roulette? Or only dice?


You can currently only get profit from dice. The full blackjack bankroll is from Alex.
dogedice.me (OP)
Hero Member
*****
Offline Offline

Activity: 776
Merit: 522



View Profile WWW
March 25, 2015, 10:45:11 AM
 #109

It happened again. Even though it says right on the table that the dealer hits soft 17:

...

I bet 1 CLAM, was dealt 11 vs. dealer's 3, so I doubled, the dealer got soft 17, stood, and won!

...

Such sadness. Sad

I tried verifying this hand to see whether I would have won or not if the game wasn't buggy, but I couldn't get it to verify.

First I tried using the Ruby code from the FAQ:



but it won't even run. It complains:


    bitdice.rb:7:in `<main>': uninitialized constant Digest (NameError)


so it looks like the code isn't really complete. I don't know much Ruby at all, but I was able to get past that by adding:


    require 'digest/sha1'


Then it complained:


    bitdice.rb:13:in `<main>': undefined local variable or method `initial_deck' for main:Object (NameError)


so I added a definition for the initial deck.

I finished up with this:

Code:
SECRET='7fc84a2d8dbf0d50b79bd771677354dd85b1b64129f6f54f7fb4def6973aba2598044eaa826a6020d41be7ec255e88b43c1b0afc2522c657aa6922b7852414d6'
USER_SEED='everymagicseed'
USER_ID='8798'
USER_BET_NUMBER='73'

require 'digest/sha1'

# generates bet hash string
bet_hash = Digest::SHA512.hexdigest (SECRET + ':' + USER_SEED + ':' + USER_ID + ':' + USER_BET_NUMBER)
# bet_hash = '49dde939d58d494f4dbb3a510b86abe4f62d2c17a6a83bb3f5f9991a47cdac77b38008f8caf6938c6e491e6fd54ab020b1b961c787fd296cad4b2cae4ce540f6'
# pass hash to Mersenne Twister
print 'bet_hash: ', bet_hash, "\n"
@random = Random.new(bet_hash.to_i(16))

deck = ['AS', '2S', '3S', '4S', '5S', '6S', '7S', '8S', '9S', '10S', 'JS', 'QS', 'KS',
        'AH', '2H', '3H', '4H', '5H', '6H', '7H', '8H', '9H', '10H', 'JH', 'QH', 'KH',
        'AD', '2D', '3D', '4D', '5D', '6D', '7D', '8D', '9D', '10D', 'JD', 'QD', 'KD',
        'AC', '2C', '3C', '4C', '5C', '6C', '7C', '8C', '9C', '10C', 'JC', 'QC', 'KC'] * 8

# shuffle deck
deck.shuffle!(random: @random)

# now deck contains shuffled deck
print deck, "\n"

and it outputs this:

Code:
bet_hash: 49dde939d58d494f4dbb3a510b86abe4f62d2c17a6a83bb3f5f9991a47cdac77b38008f8caf6938c6e491e6fd54ab020b1b961c787fd296cad4b2cae4ce540f6
["7C", "4D", "2S", "10S", "9C", "8H", "AC", "5H", "3H", "6S", "9S", "8D", "5C", "7C", "3H", "9H", "QH", "2S", "8S", "9H", "KH", "4S", "9S", "8C", "KS", "5S", "7C", "4S", "QS", "QC", "10H", "JH", "JH", "KS", "7D", "7D", "6C", "QH", "4S", "4D", "7H", "KS", "AS", "3C", "2S", "AS", "QH", "8H", "7S", "3C", "5D", "2D", "5D", "JD", "QS", "JD", "QS", "9D", "9D", "2D", "JH", "2C", "9C", "2D", "7H", "6C", "8C", "7C", "8S", "JD", "7S", "9H", "3S", "8S", "7S", "4H", "7D", "8D", "6S", "KH", "AC", "QD", "KH", "QC", "3D", "3S", "8H", "3D", "3H", "4C", "QS", "QS", "6D", "9H", "8S", "JD", "AC", "3D", "JH", "4S", "5D", "2D", "AH", "7S", "3D", "6S", "5S", "5C", "QD", "8C", "5C", "KC", "6C", "4H", "AD", "KS", "5C", "7C", "5D", "7H", "AD", "JD", "2D", "4S", "6H", "3H", "2C", "6S", "QD", "6D", "QS", "AD", "5S", "3H", "AD", "6H", "9H", "8S", "3C", "2H", "2H", "6C", "5D", "7S", "2H", "QC", "4D", "9S", "6H", "7H", "JS", "6S", "8H", "KD", "6C", "6D", "7D", "10C", "10S", "QD", "9D", "2D", "QD", "2C", "4D", "10H", "9D", "3C", "AC", "KC", "KC", "8C", "JS", "QS", "6D", "9H", "JC", "3C", "KD", "7S", "JS", "10C", "8S", "5H", "6C", "6H", "5H", "2H", "2S", "4C", "9D", "2H", "3D", "JC", "JH", "AS", "AS", "9D", "5H", "KS", "KH", "3H", "AD", "8H", "8H", "3C", "10C", "5S", "10C", "3S", "6H", "5D", "AD", "5H", "9C", "4H", "KH", "4H", "10D", "2D", "JH", "3S", "10H", "7H", "10D", "AC", "JH", "6D", "QC", "6H", "10S", "4S", "4C", "AH", "10C", "4D", "10S", "JC", "10D", "5C", "8C", "KD", "AH", "KD", "4H", "10D", "KC", "AH", "KD", "8D", "7H", "8H", "10H", "AH", "6H", "QH", "4D", "9S", "5H", "10D", "9C", "8S", "2S", "3D", "10H", "JC", "8D", "QC", "7D", "JS", "JD", "7D", "JS", "7C", "4C", "6H", "9H", "4C", "8H", "KS", "8D", "QC", "2S", "4S", "10H", "8D", "QC", "4H", "JS", "8C", "10C", "5S", "AC", "6D", "9C", "10H", "3C", "9D", "5C", "2C", "6S", "5H", "JC", "AH", "9S", "KC", "AS", "9S", "5H", "5S", "AD", "10D", "6D", "AS", "KD", "5S", "6S", "3D", "4C", "AH", "8C", "5S", "AS", "10D", "9D", "10H", "JH", "4H", "7H", "7H", "JD", "5C", "JS", "6C", "AS", "QS", "10D", "9C", "KC", "5D", "9H", "2H", "4C", "QD", "AC", "2C", "9S", "7D", "2C", "2C", "9C", "2H", "2C", "5D", "QH", "JS", "3H", "3H", "9C", "KD", "10S", "AH", "4S", "KH", "QH", "QH", "10S", "QD", "10S", "KH", "KD", "6C", "KS", "JC", "4C", "4D", "4D", "2S", "2S", "4H", "QH", "3C", "7S", "3S", "3S", "KC", "JD", "6D", "KS", "JC", "QC", "8C", "2D", "7C", "3S", "5C", "KH", "QD", "7S", "AC", "7C", "8S", "10S", "AD", "8D", "7D", "2H", "8D", "3S", "10C", "6S", "KC", "JC", "9S", "10C", "3D"]

Note that the 'bet hash' is the same as I see when I click the bet ID:



so at least the sha512 part of the code is getting the right hash. But I don't see how the final shuffle corresponds to the cards I was dealt. My first card was 9C, but there's no 9C near either end of the shuffled deck output.

What am I doing wrong now? Maybe the Ruby code in the FAQ could be improved so that it will actually run and give the same shuffle as the game is using.

I will check the soft 17 bug, with validation here's the correct code:

Code:
require 'digest'

SECRET='7fc84a2d8dbf0d50b79bd771677354dd85b1b64129f6f54f7fb4def6973aba2598044eaa826a6020d41be7ec255e88b43c1b0afc2522c657aa6922b7852414d6'
USER_SEED='everymagicseed'
USER_ID='8798'
USER_BET_NUMBER='73'

deck = %w[AS 2S 3S 4S 5S 6S 7S 8S 9S 10S JS QS KS AH 2H 3H 4H 5H 6H 7H 8H 9H 10H JH QH KH AD 2D 3D 4D 5D 6D 7D 8D 9D 10D JD QD KD AC 2C 3C 4C 5C 6C 7C 8C 9C 10C JC QC KC AS 2S 3S 4S 5S 6S 7S 8S 9S 10S JS QS KS AH 2H 3H 4H 5H 6H 7H 8H 9H 10H JH QH KH AD 2D 3D 4D 5D 6D 7D 8D 9D 10D JD QD KD AC 2C 3C 4C 5C 6C 7C 8C 9C 10C JC QC KC AS 2S 3S 4S 5S 6S 7S 8S 9S 10S JS QS KS AH 2H 3H 4H 5H 6H 7H 8H 9H 10H JH QH KH AD 2D 3D 4D 5D 6D 7D 8D 9D 10D JD QD KD AC 2C 3C 4C 5C 6C 7C 8C 9C 10C JC QC KC AS 2S 3S 4S 5S 6S 7S 8S 9S 10S JS QS KS AH 2H 3H 4H 5H 6H 7H 8H 9H 10H JH QH KH AD 2D 3D 4D 5D 6D 7D 8D 9D 10D JD QD KD AC 2C 3C 4C 5C 6C 7C 8C 9C 10C JC QC KC AS 2S 3S 4S 5S 6S 7S 8S 9S 10S JS QS KS AH 2H 3H 4H 5H 6H 7H 8H 9H 10H JH QH KH AD 2D 3D 4D 5D 6D 7D 8D 9D 10D JD QD KD AC 2C 3C 4C 5C 6C 7C 8C 9C 10C JC QC KC AS 2S 3S 4S 5S 6S 7S 8S 9S 10S JS QS KS AH 2H 3H 4H 5H 6H 7H 8H 9H 10H JH QH KH AD 2D 3D 4D 5D 6D 7D 8D 9D 10D JD QD KD AC 2C 3C 4C 5C 6C 7C 8C 9C 10C JC QC KC AS 2S 3S 4S 5S 6S 7S 8S 9S 10S JS QS KS AH 2H 3H 4H 5H 6H 7H 8H 9H 10H JH QH KH AD 2D 3D 4D 5D 6D 7D 8D 9D 10D JD QD KD AC 2C 3C 4C 5C 6C 7C 8C 9C 10C JC QC KC AS 2S 3S 4S 5S 6S 7S 8S 9S 10S JS QS KS AH 2H 3H 4H 5H 6H 7H 8H 9H 10H JH QH KH AD 2D 3D 4D 5D 6D 7D 8D 9D 10D JD QD KD AC 2C 3C 4C 5C 6C 7C 8C 9C 10C JC QC KC]

bet_hash = Digest::SHA512.hexdigest (SECRET + ':' + USER_SEED + ':' + USER_ID + ':' + USER_BET_NUMBER)
random = Random.new(bet_hash.to_i(16))
deck.shuffle!(random: random)

p deck

.BitDice.               ▄▄███▄▄
           ▄▄██▀▀ ▄ ▀▀██▄▄
      ▄▄█ ▀▀  ▄▄█████▄▄  ▀▀ █▄▄
  ▄▄██▀▀     ▀▀ █████ ▀▀     ▀▀██▄▄
██▀▀ ▄▄██▀      ▀███▀      ▀██▄▄ ▀▀██
██  ████▄▄       ███       ▄▄████  ██
██  █▀▀████▄▄  ▄█████▄  ▄▄████▀▀█  ██
██  ▀     ▀▀▀███████████▀▀▀     ▀  ██
             ███████████
██  ▄     ▄▄▄███████████▄▄▄     ▄  ██
██  █▄▄████▀▀  ▀█████▀  ▀▀████▄▄█  ██
██  ████▀▀       ███       ▀▀████  ██
██▄▄ ▀▀██▄      ▄███▄      ▄██▀▀ ▄▄██
  ▀▀██▄▄     ▄▄ █████ ▄▄     ▄▄██▀▀
      ▀▀█ ▄▄  ▀▀█████▀▀  ▄▄ █▀▀
           ▀▀██▄▄ ▀ ▄▄██▀▀
               ▀▀███▀▀
        ▄▄███████▄▄
     ▄███████████████▄
    ████▀▀       ▀▀████
   ████▀           ▀████
   ████             ████
   ████ ▄▄▄▄▄▄▄▄▄▄▄ ████
▄█████████████████████████▄
██████████▀▀▀▀▀▀▀██████████
████                   ████
████                   ████
████                   ████
████                   ████
████                   ████
████▄                 ▄████
████████▄▄▄     ▄▄▄████████
  ▀▀▀█████████████████▀▀▀
        ▀▀▀█████▀▀▀
▄▄████████████████████████████████▄▄
██████████████████████████████████████
█████                            █████
█████                            █████
█████                            █████
█████                            █████
█████                     ▄▄▄▄▄▄▄▄▄▄
█████                   ▄█▀▀▀▀▀▀▀▀▀▀█▄
█████                   ██          ██
█████                   ██          ██
█████                   ██          ██
██████████████████▀▀███ ██          ██
 ████████████████▄  ▄██ ██          ██
   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ██          ██
             ██████████ ██          ██
           ▄███████████ ██████▀▀██████
          █████████████  ▀████▄▄████▀
[/]
wayshegoes
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250

I lost the liqour money boys...


View Profile
March 25, 2015, 12:22:02 PM
 #110

Why was it overlooked that the admin gave away over 1/10th of the bankroll?

Seems pretty serious but nobody is taking any notice.
waterpile
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500


View Profile
March 25, 2015, 12:30:37 PM
 #111

Why was it overlooked that the admin gave away over 1/10th of the bankroll?

Seems pretty serious but nobody is taking any notice.

are you talking about the max profit per bet? I don't know what you mean..
shitaifan2013
Legendary
*
Offline Offline

Activity: 879
Merit: 1000

monero


View Profile
March 25, 2015, 12:41:09 PM
 #112

Why was it overlooked that the admin gave away over 1/10th of the bankroll?

Seems pretty serious but nobody is taking any notice.

are you talking about the max profit per bet? I don't know what you mean..

i think he's talking about the incident yesterday. if so, I'm pretty sure the admin made a post on here, saying he's covering the loss. wait, gonna search for it.

edit: https://bitcointalk.org/index.php?topic=975399.msg10875932#msg10875932

wayshegoes
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250

I lost the liqour money boys...


View Profile
March 25, 2015, 12:44:11 PM
 #113

I mean the admin fucked up his test code and allowed someone to withdraw 1/10th of the bankroll without depositing or betting.
dogedice.me (OP)
Hero Member
*****
Offline Offline

Activity: 776
Merit: 522



View Profile WWW
March 25, 2015, 12:45:42 PM
 #114

I mean the admin fucked up his test code and allowed someone to withdraw 1/10th of the bankroll without depositing or betting.
Yes I did and I paid for that. Also I've updated the code such even If I repeat it, this will not happen again, nor any other similar incidents.

.BitDice.               ▄▄███▄▄
           ▄▄██▀▀ ▄ ▀▀██▄▄
      ▄▄█ ▀▀  ▄▄█████▄▄  ▀▀ █▄▄
  ▄▄██▀▀     ▀▀ █████ ▀▀     ▀▀██▄▄
██▀▀ ▄▄██▀      ▀███▀      ▀██▄▄ ▀▀██
██  ████▄▄       ███       ▄▄████  ██
██  █▀▀████▄▄  ▄█████▄  ▄▄████▀▀█  ██
██  ▀     ▀▀▀███████████▀▀▀     ▀  ██
             ███████████
██  ▄     ▄▄▄███████████▄▄▄     ▄  ██
██  █▄▄████▀▀  ▀█████▀  ▀▀████▄▄█  ██
██  ████▀▀       ███       ▀▀████  ██
██▄▄ ▀▀██▄      ▄███▄      ▄██▀▀ ▄▄██
  ▀▀██▄▄     ▄▄ █████ ▄▄     ▄▄██▀▀
      ▀▀█ ▄▄  ▀▀█████▀▀  ▄▄ █▀▀
           ▀▀██▄▄ ▀ ▄▄██▀▀
               ▀▀███▀▀
        ▄▄███████▄▄
     ▄███████████████▄
    ████▀▀       ▀▀████
   ████▀           ▀████
   ████             ████
   ████ ▄▄▄▄▄▄▄▄▄▄▄ ████
▄█████████████████████████▄
██████████▀▀▀▀▀▀▀██████████
████                   ████
████                   ████
████                   ████
████                   ████
████                   ████
████▄                 ▄████
████████▄▄▄     ▄▄▄████████
  ▀▀▀█████████████████▀▀▀
        ▀▀▀█████▀▀▀
▄▄████████████████████████████████▄▄
██████████████████████████████████████
█████                            █████
█████                            █████
█████                            █████
█████                            █████
█████                     ▄▄▄▄▄▄▄▄▄▄
█████                   ▄█▀▀▀▀▀▀▀▀▀▀█▄
█████                   ██          ██
█████                   ██          ██
█████                   ██          ██
██████████████████▀▀███ ██          ██
 ████████████████▄  ▄██ ██          ██
   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ██          ██
             ██████████ ██          ██
           ▄███████████ ██████▀▀██████
          █████████████  ▀████▄▄████▀
[/]
wayshegoes
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250

I lost the liqour money boys...


View Profile
March 25, 2015, 12:48:39 PM
 #115

I'm sure you said it would never happen in the first place, but it did.

Just worth noting that people are entrusting you with over 1,000 BTC of their money. What happens when you can't cover it yourself?
Bitdicesupport
Full Member
***
Offline Offline

Activity: 166
Merit: 100


View Profile
March 25, 2015, 12:48:55 PM
 #116

I mean the admin fucked up his test code and allowed someone to withdraw 1/10th of the bankroll without depositing or betting.

The coins lost belonged to the Admin because he is the only investor on Blackjack for now.

EDIT: Sorry didn't see there already was a response.
dogedice.me (OP)
Hero Member
*****
Offline Offline

Activity: 776
Merit: 522



View Profile WWW
March 25, 2015, 12:56:12 PM
 #117

I'm sure you said it would never happen in the first place, but it did.

Just worth noting that people are entrusting you with over 1,000 BTC of their money. What happens when you can't cover it yourself?

Do you now any service which was not affected by any loss at all at any given time? We all make mistakes.

First of all the loss is always limited to the amount in hot wallet, second I will cover any loss, BitDice generates much more profits than this loss. However everything is just speculation. The main point is - this will not ever happen again and I'm not gonna risk any investors funds.

.BitDice.               ▄▄███▄▄
           ▄▄██▀▀ ▄ ▀▀██▄▄
      ▄▄█ ▀▀  ▄▄█████▄▄  ▀▀ █▄▄
  ▄▄██▀▀     ▀▀ █████ ▀▀     ▀▀██▄▄
██▀▀ ▄▄██▀      ▀███▀      ▀██▄▄ ▀▀██
██  ████▄▄       ███       ▄▄████  ██
██  █▀▀████▄▄  ▄█████▄  ▄▄████▀▀█  ██
██  ▀     ▀▀▀███████████▀▀▀     ▀  ██
             ███████████
██  ▄     ▄▄▄███████████▄▄▄     ▄  ██
██  █▄▄████▀▀  ▀█████▀  ▀▀████▄▄█  ██
██  ████▀▀       ███       ▀▀████  ██
██▄▄ ▀▀██▄      ▄███▄      ▄██▀▀ ▄▄██
  ▀▀██▄▄     ▄▄ █████ ▄▄     ▄▄██▀▀
      ▀▀█ ▄▄  ▀▀█████▀▀  ▄▄ █▀▀
           ▀▀██▄▄ ▀ ▄▄██▀▀
               ▀▀███▀▀
        ▄▄███████▄▄
     ▄███████████████▄
    ████▀▀       ▀▀████
   ████▀           ▀████
   ████             ████
   ████ ▄▄▄▄▄▄▄▄▄▄▄ ████
▄█████████████████████████▄
██████████▀▀▀▀▀▀▀██████████
████                   ████
████                   ████
████                   ████
████                   ████
████                   ████
████▄                 ▄████
████████▄▄▄     ▄▄▄████████
  ▀▀▀█████████████████▀▀▀
        ▀▀▀█████▀▀▀
▄▄████████████████████████████████▄▄
██████████████████████████████████████
█████                            █████
█████                            █████
█████                            █████
█████                            █████
█████                     ▄▄▄▄▄▄▄▄▄▄
█████                   ▄█▀▀▀▀▀▀▀▀▀▀█▄
█████                   ██          ██
█████                   ██          ██
█████                   ██          ██
██████████████████▀▀███ ██          ██
 ████████████████▄  ▄██ ██          ██
   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ██          ██
             ██████████ ██          ██
           ▄███████████ ██████▀▀██████
          █████████████  ▀████▄▄████▀
[/]
Slark
Legendary
*
Offline Offline

Activity: 1862
Merit: 1004


View Profile
March 25, 2015, 01:11:37 PM
 #118

Hello, I just want to know if you at Bitdice have any plans regarding adding faucet to your site? Every big dice site has one already... It would be  nice feature. Also I want to know what is "keyboard betting"?
dogedice.me (OP)
Hero Member
*****
Offline Offline

Activity: 776
Merit: 522



View Profile WWW
March 25, 2015, 01:13:50 PM
 #119

Hello, I just want to know if you at Bitdice have any plans regarding adding faucet to your site? Every big dice site has one already... It would be  nice feature. Also I want to know what is "keyboard betting"?

I'm not sure about faucet, we have a RainBot which funds active players, and at least once a week it rains like 1M redd or 200k doge at once.. However to receive those you need to play in the last 24 hours.

Keyboards betting means you can play with shortcuts, pressing H or L on the keyboards.

.BitDice.               ▄▄███▄▄
           ▄▄██▀▀ ▄ ▀▀██▄▄
      ▄▄█ ▀▀  ▄▄█████▄▄  ▀▀ █▄▄
  ▄▄██▀▀     ▀▀ █████ ▀▀     ▀▀██▄▄
██▀▀ ▄▄██▀      ▀███▀      ▀██▄▄ ▀▀██
██  ████▄▄       ███       ▄▄████  ██
██  █▀▀████▄▄  ▄█████▄  ▄▄████▀▀█  ██
██  ▀     ▀▀▀███████████▀▀▀     ▀  ██
             ███████████
██  ▄     ▄▄▄███████████▄▄▄     ▄  ██
██  █▄▄████▀▀  ▀█████▀  ▀▀████▄▄█  ██
██  ████▀▀       ███       ▀▀████  ██
██▄▄ ▀▀██▄      ▄███▄      ▄██▀▀ ▄▄██
  ▀▀██▄▄     ▄▄ █████ ▄▄     ▄▄██▀▀
      ▀▀█ ▄▄  ▀▀█████▀▀  ▄▄ █▀▀
           ▀▀██▄▄ ▀ ▄▄██▀▀
               ▀▀███▀▀
        ▄▄███████▄▄
     ▄███████████████▄
    ████▀▀       ▀▀████
   ████▀           ▀████
   ████             ████
   ████ ▄▄▄▄▄▄▄▄▄▄▄ ████
▄█████████████████████████▄
██████████▀▀▀▀▀▀▀██████████
████                   ████
████                   ████
████                   ████
████                   ████
████                   ████
████▄                 ▄████
████████▄▄▄     ▄▄▄████████
  ▀▀▀█████████████████▀▀▀
        ▀▀▀█████▀▀▀
▄▄████████████████████████████████▄▄
██████████████████████████████████████
█████                            █████
█████                            █████
█████                            █████
█████                            █████
█████                     ▄▄▄▄▄▄▄▄▄▄
█████                   ▄█▀▀▀▀▀▀▀▀▀▀█▄
█████                   ██          ██
█████                   ██          ██
█████                   ██          ██
██████████████████▀▀███ ██          ██
 ████████████████▄  ▄██ ██          ██
   ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ██          ██
             ██████████ ██          ██
           ▄███████████ ██████▀▀██████
          █████████████  ▀████▄▄████▀
[/]
wayshegoes
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250

I lost the liqour money boys...


View Profile
March 25, 2015, 01:18:17 PM
 #120

How does BitDice generate enough income to cover this? It looks like even all the BTC from your investment as well as commission on profits wouldn't even come close to covering it.
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!