Bitcoin Forum
May 02, 2024, 01:42:33 AM *
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 ... 128 »
  Print  
Author Topic: 🔥🔥🔥 BC.GAME - CASINO AND SPORTSBOOK | $1,000 GIVEAWAY LIVE! 🔥🔥🔥  (Read 59377 times)
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
May 06, 2019, 11:27:11 AM
 #81

I think there is a bug, I have a notification that I received 5 Turtle coins for free after I log in but it's not appearing in my balances?
And refresh?

1714614153
Hero Member
*
Offline Offline

Posts: 1714614153

View Profile Personal Message (Offline)

Ignore
1714614153
Reply with quote  #2

1714614153
Report to moderator
1714614153
Hero Member
*
Offline Offline

Posts: 1714614153

View Profile Personal Message (Offline)

Ignore
1714614153
Reply with quote  #2

1714614153
Report to moderator
1714614153
Hero Member
*
Offline Offline

Posts: 1714614153

View Profile Personal Message (Offline)

Ignore
1714614153
Reply with quote  #2

1714614153
Report to moderator
"With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714614153
Hero Member
*
Offline Offline

Posts: 1714614153

View Profile Personal Message (Offline)

Ignore
1714614153
Reply with quote  #2

1714614153
Report to moderator
1714614153
Hero Member
*
Offline Offline

Posts: 1714614153

View Profile Personal Message (Offline)

Ignore
1714614153
Reply with quote  #2

1714614153
Report to moderator
btcnope
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
May 06, 2019, 11:51:58 AM
 #82

I think there is a bug, I have a notification that I received 5 Turtle coins for free after I log in but it's not appearing in my balances?
And refresh?

I did also have this kind of  problem, I tried to refresh and re log in my account but upon checking my balance there's no 5 turtle coin to be seen.
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
May 14, 2019, 11:29:08 AM
 #83

I think there is a bug, I have a notification that I received 5 Turtle coins for free after I log in but it's not appearing in my balances?
Thank you for your feedback, maybe there are something wrong.
Could you tell me your username?I will tip you some free ETH as an apology.

BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
May 14, 2019, 11:29:24 AM
 #84

I think there is a bug, I have a notification that I received 5 Turtle coins for free after I log in but it's not appearing in my balances?
And refresh?

I did also have this kind of  problem, I tried to refresh and re log in my account but upon checking my balance there's no 5 turtle coin to be seen.
Thank you for your feedback, maybe there are something wrong.
Could you tell me your username?I will tip you some free ETH as an apology.

Ryan Dugan
Hero Member
*****
Offline Offline

Activity: 924
Merit: 501


View Profile WWW
June 03, 2019, 10:18:16 PM
 #85

Turtlecoin(http://turtlecoin.lol)has been listed on BC.Game
You can get 5 TRTL for free

You are listing very good coins. That turtle coin I have only heard of now because of this post you made. I missed the train though when it was cheap. It has done very well. Maybe you can add the Ann thread link too?

https://bitcointalk.org/index.php?topic=2872287.0

BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
June 10, 2019, 12:35:08 PM
 #86

Turtlecoin(http://turtlecoin.lol)has been listed on BC.Game
You can get 5 TRTL for free

You are listing very good coins. That turtle coin I have only heard of now because of this post you made. I missed the train though when it was cheap. It has done very well. Maybe you can add the Ann thread link too?

https://bitcointalk.org/index.php?topic=2872287.0
Thanks buddy! Cool
Could you tell me about your username in bc.game?
I will tip you some fresh turtle coin as a thanks.

bitcoin-shark
Hero Member
*****
Offline Offline

Activity: 2828
Merit: 605



View Profile
June 10, 2019, 08:13:33 PM
 #87


it looks like an interesting site there are various ways to win and we can even invest on it, i think i'll try it in depth let's see if i find some bugs to win the 100 eth...
feryjhie
Hero Member
*****
Offline Offline

Activity: 882
Merit: 595


View Profile
June 15, 2019, 10:04:56 AM
 #88

i just play the HashDice on your website but i don't know if this a bug or just a glitch because every time i make a bet when it wins my balance just increase while the dices still rolling
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
June 27, 2019, 12:23:09 PM
Last edit: October 27, 2020, 12:30:35 PM by BC.GAME
 #89

This will reuse the idea posted by Ryan and used for Bustabit v2.

Starting with a secret I've generated a chain of 10,000,000 SHA256 hashes. Each element is the hash of the lowercase, hexadecimal string representation of the previous hash. The hash of the chain's last element is
f6c4a94c4a2dd2912fbef23fb68aa56488313a343c9cf6c95e52b8ef74230991 .

Every game maps to a hash in the chain: The 10,000,000th element of the chain is the hash of game #1 and the first element in the chain is the hash of game #10,000,000. To verify that a hash belongs to a game #n, simply hash it n times and compare the result with the terminating hash.

To calculate a game's result from its hash:

Code:
const crypto = require("crypto")

function gameResult(seed, salt) {
  const nBits = 52 // number of most significant bits to use

  // 1. HMAC_SHA256(key=salt, message=seed)
  const hmac = crypto.createHmac("sha256", salt)
  hmac.update(seed)
  seed = hmac.digest("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)

  // 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)

Before being used to calculate the corresponding result, each game hash is salted with the lowercase, hexadecimal string representation of the hash of bitcoin block 582,678 .
This block has not been mined yet at the time of starting the provably fair seeding event, proving that I have not deliberately picked a chain that is unfavorable for players.


game-protect
Hero Member
*****
Offline Offline

Activity: 1344
Merit: 507



View Profile
June 27, 2019, 12:35:22 PM
 #90

Who is the operator?
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
June 27, 2019, 01:04:25 PM
Last edit: June 28, 2019, 09:35:35 AM by BC.GAME
 #91

We will apply it in the Roulette game
Block 582,678 is mined
https://btc.com/00000000000000000005bcf4bcfe3a699dd7833839e593127885e2b1e80ceb10
So our client seed will be
00000000000000000005bcf4bcfe3a699dd7833839e593127885e2b1e80ceb10

Sharon121212
Full Member
***
Offline Offline

Activity: 280
Merit: 215



View Profile
June 28, 2019, 05:39:36 AM
 #92

What are the new updates on this games by me scrolling through the pages on this thread I observed the OP had some important information giving out. There is an option of imputing those information on the post it self by editing it so many users might not really scroll through the pages.
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
June 28, 2019, 05:54:41 AM
 #93

What are the new updates on this games by me scrolling through the pages on this thread I observed the OP had some important information giving out. There is an option of imputing those information on the post it self by editing it so many users might not really scroll through the pages.
Thanks buddy!

barbara44
Hero Member
*****
Offline Offline

Activity: 2394
Merit: 605


View Profile
July 02, 2019, 05:48:58 AM
 #94

LOL, one thing I don’t like is when I see posts like this and newbies are always the ones to rush in and say they like the site and they have been making use it. It makes everything look quite suspicious and I immediately lose interest in such sites. Reason I always feel like this is because some people will post a project or their business and then create a different accounts and use it to be commenting on that same posts, acting like they are someone else and when you check it will just be newbies that are claiming it’s a good project. Whatever, I already have one that I’m using.
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
July 23, 2019, 10:07:16 AM
 #95

LOL, one thing I don’t like is when I see posts like this and newbies are always the ones to rush in and say they like the site and they have been making use it. It makes everything look quite suspicious and I immediately lose interest in such sites. Reason I always feel like this is because some people will post a project or their business and then create a different accounts and use it to be commenting on that same posts, acting like they are someone else and when you check it will just be newbies that are claiming it’s a good project. Whatever, I already have one that I’m using.
Yuuup but we have another thread actually and it's funny without official bullshit lol
https://bitcointalk.org/index.php?topic=5154214
Hope you like it

babo
Legendary
*
Offline Offline

Activity: 3584
Merit: 4121



View Profile WWW
July 23, 2019, 12:43:43 PM
 #96

~snip~

Fair check
https://bcsnproject.github.io/HashCheck/
800k given data is available on our website:
60% probability of result higher than 2x (theoretically 49.505%), in favor of the player betting higher than 2x.
19.9% probability of result higher than 5x (theoretically 19.8%), in favor of the player betting higher than 5x.
9.97% probability of result higher than 10x (theoretically 9.903%), in favor of the player betting higher than 10x.
1.02% probability of result higher than 100x (theoretically 0.99%), in favor of the player betting higher than 100x.

~snip~

We also welcome more specific analysis with data and algorithm worth 100ETH. You can run any test on GitHub. But opinion in one sentence is not enough.
https://github.com/BCSNProject/CheckCondition

The only advantage of seed choice is easier understanding for beginners; there is no effect on the fairness of the game. We are trying to use EOS+BTC seeds choices recently for players to make the seeds of this game more decentralized.


Very nice job dude! Really! I love who use and release stuff with Opensource licence!
Backend are written in Java?

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
MyRealName
Member
**
Offline Offline

Activity: 77
Merit: 18


View Profile
July 23, 2019, 11:26:57 PM
 #97

How long doe's it take to withdraw using Lightning Network ? It shows me status "processing" and that's it.
BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
July 29, 2019, 11:21:37 AM
 #98

~snip~

Fair check
https://bcsnproject.github.io/HashCheck/
800k given data is available on our website:
60% probability of result higher than 2x (theoretically 49.505%), in favor of the player betting higher than 2x.
19.9% probability of result higher than 5x (theoretically 19.8%), in favor of the player betting higher than 5x.
9.97% probability of result higher than 10x (theoretically 9.903%), in favor of the player betting higher than 10x.
1.02% probability of result higher than 100x (theoretically 0.99%), in favor of the player betting higher than 100x.

~snip~

We also welcome more specific analysis with data and algorithm worth 100ETH. You can run any test on GitHub. But opinion in one sentence is not enough.
https://github.com/BCSNProject/CheckCondition

The only advantage of seed choice is easier understanding for beginners; there is no effect on the fairness of the game. We are trying to use EOS+BTC seeds choices recently for players to make the seeds of this game more decentralized.


Very nice job dude! Really! I love who use and release stuff with Opensource licence!
Backend are written in Java?
Yuuuup

BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
July 29, 2019, 11:22:34 AM
 #99

How long doe's it take to withdraw using Lightning Network ? It shows me status "processing" and that's it.
it should be done immediately

BC.GAME (OP)
Copper Member
Full Member
***
Offline Offline

Activity: 238
Merit: 111



View Profile WWW
August 07, 2019, 08:35:20 AM
 #100

At present, there is a bug in the online roulette random algorithm, which results in the probability that the number 36 appears in the hash calculation result is extremely low.
The system will be upgraded at 6:00 UTC-4 7th August 2019. The hash chain remains unchanged after the upgrade.

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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 ... 128 »
  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!