Bitcoin Forum
May 03, 2024, 04:48:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Crash Game Reseeding Event @ BC.Game  (Read 551 times)
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
October 11, 2022, 06:37:55 AM
 #1

Hello world,
 
It’s been over 2 years since we updated our Crash algorithm with salting (https://bitcointalk.org/index.php?topic=5256606). In our endeavor to constantly improve seed safety and provable fairness of our games, we will shortly be updating our Crash game with a new salted hash. The purpose of this post is for full transparency of this process.
 
 
CRASH GAME RESULT FORMULA
Code:
 
  const gameResult = (seed, salt) => {
    const nBits = 52; // number of most significant bits to use
 
    // 1. HMAC_SHA256(message=seed, key=salt) 
    const hmac = CryptoJS.HmacSHA256(CryptoJS.enc.Hex.parse(seed), salt);
    seed = hmac.toString(CryptoJS.enc.Hex);
 
    // 2. r = 52 most significant bits
    seed = seed.slice(0, nBits / 4);
    const r = parseInt(seed, 16);
 
    // 3. X = r / 2^52
    let X = r / Math.pow(2, nBits); // uniformly distributed in [0; 1)
    X = parseFloat(X.toPrecision(9));
 
    // 4. X = 99 / (1-X)
    X = 99 / (1 - X);
 
    // 5. return max(trunc(X), 100)
    const result = Math.floor(X);
    return Math.max(1, result / 100);
  };
 

Prior to being used for calculation, each game hash is salted with the lowercase + hexadecimal string representation of the hash from pre-selected Bitcoin block 758,160. This block has not been mined yet as of this post, proving that we have not deliberately selected a mined block with a hash that could be favorable to the house. Once block 758,160 has been mined, the results will be posted to this thread as a reply. The game this post is referencing is at https://bc.game/game/crash


1714711738
Hero Member
*
Offline Offline

Posts: 1714711738

View Profile Personal Message (Offline)

Ignore
1714711738
Reply with quote  #2

1714711738
Report to moderator
1714711738
Hero Member
*
Offline Offline

Posts: 1714711738

View Profile Personal Message (Offline)

Ignore
1714711738
Reply with quote  #2

1714711738
Report to moderator
Remember that Bitcoin is still beta software. Don't put all of your money into BTC!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714711738
Hero Member
*
Offline Offline

Posts: 1714711738

View Profile Personal Message (Offline)

Ignore
1714711738
Reply with quote  #2

1714711738
Report to moderator
1714711738
Hero Member
*
Offline Offline

Posts: 1714711738

View Profile Personal Message (Offline)

Ignore
1714711738
Reply with quote  #2

1714711738
Report to moderator
BetFlix
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
October 11, 2022, 07:40:14 AM
 #2

Whatever, don't play here.. it's scam., They blocked my account and i only have one account which is verified., Now i can't login after depositing 4000 usd in a week and losing a lot, some are still there.., probably when it comes to weekly or recharge bonus which they don't want to give to users..this site is pure scam., I sent emails which they told to be get replied in 24-72 hrs., It's been more than 72 hrs , i didn't get any reply..when I'm login in my account, it's showing account at risk. My account is verified by email and all., And now i can't access even my own fund. Beware guys., I'm attaching screenshot of login page guys, please check and beware, i did nothing unethical except i think some mod get my account at risk after chatting in english chatroom , which chatroom in these casinos can be toxic at times. This is pure scam ..i even have to create this account to post it here. don't trust this casino at all.
BetFlix
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
October 11, 2022, 07:50:20 AM
 #3

https://ibb.co/hH39YYX
https://ibb.co/pyprWR9


I'll posting some proof my deposit trascation done there. With txid.
BetFlix
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
October 11, 2022, 07:58:10 AM
 #4

https://tronscan.org/#/transaction/87e8491c9a9d44cd001d39f8c81912781e901589e39ee2186e09f3afc537e964

https://tronscan.org/#/transaction/c57e3bf231a76e24f1d2fa30dac7076072c0165574c1161747a4a14f04edc612

https://tronscan.org/#/transaction/e23259f1b5991ab3525240f14180ce5eaa5b2d288d6efb4c62b2bb20ec1d954c

https://tronscan.org/#/transaction/32f80f494f550660e0172ba23bd8dda26c9414b5d44e9460c57b45332db68f17

https://tronscan.org/#/transaction/d2db6082fb2b39fda46769c3256f55a2dc1dc5a28696c68276c2c682e1907c35

These are my 5 latest transaction I've done there..few more from other wallets totalling 4000 usd in a week, and when comes to weekly and bonus time, they risked the account. My account is even verified and i have only one account., Beware this is fraud, they're not even replying to email , been more than 72 hours. Red flag casino..
BetFlix
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
October 11, 2022, 08:05:35 AM
 #5

Hello world,
 
It’s been over 2 years since we updated our Crash algorithm with salting (https://bitcointalk.org/index.php?topic=5256606). In our endeavor to constantly improve seed safety and provable fairness of our games, we will shortly be updating our Crash game with a new salted hash. The purpose of this post is for full transparency of this process.
 
 
CRASH GAME RESULT FORMULA
Code:
 
  const gameResult = (seed, salt) => {
    const nBits = 52; // number of most significant bits to use
 
    // 1. HMAC_SHA256(message=seed, key=salt) 
    const hmac = CryptoJS.HmacSHA256(CryptoJS.enc.Hex.parse(seed), salt);
    seed = hmac.toString(CryptoJS.enc.Hex);
 
    // 2. r = 52 most significant bits
    seed = seed.slice(0, nBits / 4);
    const r = parseInt(seed, 16);
 
    // 3. X = r / 2^52
    let X = r / Math.pow(2, nBits); // uniformly distributed in [0; 1)
    X = parseFloat(X.toPrecision(9));
 
    // 4. X = 99 / (1-X)
    X = 99 / (1 - X);
 
    // 5. return max(trunc(X), 100)
    const result = Math.floor(X);
    return Math.max(1, result / 100);
  };
 

Prior to being used for calculation, each game hash is salted with the lowercase + hexadecimal string representation of the hash from pre-selected Bitcoin block 758,160. This block has not been mined yet as of this post, proving that we have not deliberately selected a mined block with a hash that could be favorable to the house. Once block 758,160 has been mined, the results will be posted to this thread as a reply. The game this post is referencing is at https://bc.game/game/crash


Solve my issue and let me login..to get to my deposited fund.
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
October 11, 2022, 08:47:15 AM
 #6

Block 758,160 has been mined, so we have our salt: 000000000000000000030587dd9ded1fcc5d603652da58deb670319bd2e09445
https://blockchair.com/bitcoin/block/758160

BetFlix
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
October 11, 2022, 08:55:15 AM
 #7

Block 758,160 has been mined, so we have our salt: 000000000000000000030587dd9ded1fcc5d603652da58deb670319bd2e09445
https://blockchair.com/bitcoin/block/758160
What about my issue, ?, When I'm getting back to my account, I'm waiting for email last 72 hrs., Still no reply and I'm not able to login back to account., Support isn't helping at all.
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
October 11, 2022, 12:18:56 PM
 #8

Block 758,160 has been mined, so we have our salt: 000000000000000000030587dd9ded1fcc5d603652da58deb670319bd2e09445
https://blockchair.com/bitcoin/block/758160
What about my issue, ?, When I'm getting back to my account, I'm waiting for email last 72 hrs., Still no reply and I'm not able to login back to account., Support isn't helping at all.

Please stop spamming this thread. You are out of line and off topic. If you would like to discuss the reason your account was blocked publicly, then start a new thread here in the Scam Accusations section, or come to our Main Thread, here.

Daltonik
Legendary
*
Offline Offline

Activity: 2520
Merit: 1490


View Profile
October 11, 2022, 12:35:00 PM
 #9

Hello world,
 
It’s been over 2 years since we updated our Crash algorithm with salting (https://bitcointalk.org/index.php?topic=5256606). In our endeavor to constantly improve seed safety and provable fairness of our games, we will shortly be updating our Crash game with a new salted hash. The purpose of this post is for full transparency of this process.
 
 
<...>
 
Prior to being used for calculation, each game hash is salted with the lowercase + hexadecimal string representation of the hash from pre-selected Bitcoin block 758,160. This block has not been mined yet as of this post, proving that we have not deliberately selected a mined block with a hash that could be favorable to the house. Once block 758,160 has been mined, the results will be posted to this thread as a reply. The game this post is referencing is at https://bc.game/game/crash



Hi, great job, I would just like to ask if the 2,000 JB limit of crash bets will be canceled, or is it due to the limited bankroll of JB in the game, I just mainly use free JB for crash games, I would like to be able to place a larger JB bet in the round.
BetFlix
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
October 12, 2022, 03:14:03 PM
 #10

Block 758,160 has been mined, so we have our salt: 000000000000000000030587dd9ded1fcc5d603652da58deb670319bd2e09445
https://blockchair.com/bitcoin/block/758160
What about my issue, ?, When I'm getting back to my account, I'm waiting for email last 72 hrs., Still no reply and I'm not able to login back to account., Support isn't helping at all.

Please stop spamming this thread. You are out of line and off topic. If you would like to discuss the reason your account was blocked publicly, then start a new thread here in the Scam Accusations section, or come to our Main Thread, here.

You guys should admit that the way decieving players, by running shit scamm, ..if you've thought i would be profit, risked the account., It's verified and i even have only one account and not replying to emails past 4 days, this clearly because it's fkin stupid scam, .fear god as***, let me fkin login and get my deposit back atleast.
abel1337
Legendary
*
Offline Offline

Activity: 2464
Merit: 1145

FOCUS


View Profile WWW
October 12, 2022, 03:58:49 PM
 #11

Block 758,160 has been mined, so we have our salt: 000000000000000000030587dd9ded1fcc5d603652da58deb670319bd2e09445
https://blockchair.com/bitcoin/block/758160
What about my issue, ?, When I'm getting back to my account, I'm waiting for email last 72 hrs., Still no reply and I'm not able to login back to account., Support isn't helping at all.

Please stop spamming this thread. You are out of line and off topic. If you would like to discuss the reason your account was blocked publicly, then start a new thread here in the Scam Accusations section, or come to our Main Thread, here.

You guys should admit that the way decieving players, by running shit scamm, ..if you've thought i would be profit, risked the account., It's verified and i even have only one account and not replying to emails past 4 days, this clearly because it's fkin stupid scam, .fear god as***, let me fkin login and get my deposit back atleast.
No one will make a move about your case given that you are posting at a wrong thread about your scam accusation case. BC game advised you to post it to the proper channel which is Scam Accusations, just do it because spamming here won't do anything good to you and forum members wouldn't recognized you even you have a full proof of them scamming you. Do it on the proper board man!
Get-Paid.com
Sr. Member
****
Offline Offline

Activity: 1820
Merit: 386



View Profile
October 12, 2022, 05:29:21 PM
 #12

Hello world,
 
It’s been over 2 years since we updated our Crash algorithm with salting (https://bitcointalk.org/index.php?topic=5256606). In our endeavor to constantly improve seed safety and provable fairness of our games, we will shortly be updating our Crash game with a new salted hash. The purpose of this post is for full transparency of this process.


Good news! It's great to see it! Wishing you lots of success moving onward!


What about my issue, ?

You've been advised to use the Scam Accusation forum - why are you not creating, properly, a new thread there, telling everyone what happened to you, and then it can be taken from there?

Going against a simple request is not ideal, I see lots of threads like this one - the OP ended up with lots of negative trust from other forum members.

If you want to earn trust (our trust as well) - do as you've been told, open/create a proper thread and then let's see what happened, but spamming this thread is definitely not the right way to get your issues resolved!

🍀 Read our Blog how to make money from Gambling --> https://gamblingfreebies.com/ 🍀

💰 Our Top Bitcoin Faucet --> https://freebitcoin.io 💰
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
October 12, 2022, 10:32:21 PM
 #13

Hello world,
 
It’s been over 2 years since we updated our Crash algorithm with salting (https://bitcointalk.org/index.php?topic=5256606). In our endeavor to constantly improve seed safety and provable fairness of our games, we will shortly be updating our Crash game with a new salted hash. The purpose of this post is for full transparency of this process.
 
 
<...>
 
Prior to being used for calculation, each game hash is salted with the lowercase + hexadecimal string representation of the hash from pre-selected Bitcoin block 758,160. This block has not been mined yet as of this post, proving that we have not deliberately selected a mined block with a hash that could be favorable to the house. Once block 758,160 has been mined, the results will be posted to this thread as a reply. The game this post is referencing is at https://bc.game/game/crash



Hi, great job, I would just like to ask if the 2,000 JB limit of crash bets will be canceled, or is it due to the limited bankroll of JB in the game, I just mainly use free JB for crash games, I would like to be able to place a larger JB bet in the round.

JB To The Moon!

We are keeping the JB limits as they are for now. We are considering raising the max profit for JB though because we do get asked about this quite often.

Get-Paid.com
Sr. Member
****
Offline Offline

Activity: 1820
Merit: 386



View Profile
October 13, 2022, 03:40:07 AM
 #14

JB To The Moon!

We are keeping the JB limits as they are for now. We are considering raising the max profit for JB though because we do get asked about this quite often.

Good to hear. Got a completely different question.

Will you consider in the future to have a betting exchange like Betfair? Seems like no major gambling site has gone in this direction.
Is this something you might consider for the very long run?

🍀 Read our Blog how to make money from Gambling --> https://gamblingfreebies.com/ 🍀

💰 Our Top Bitcoin Faucet --> https://freebitcoin.io 💰
Daltonik
Legendary
*
Offline Offline

Activity: 2520
Merit: 1490


View Profile
October 13, 2022, 10:43:28 AM
 #15

JB To The Moon!

We are keeping the JB limits as they are for now. We are considering raising the max profit for JB though because we do get asked about this quite often.

Thank you for your answer and I hope that there will be movements in this direction, I would also like to see the further development and scope of the internal JB token, as it is done in other online casinos.
Pages: [1]
  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!