Author

Topic: 🔥🔥🔥 BC.GAME - CASINO AND SPORTSBOOK | 200% BONUS - PROMO CODE #BCLCFC 🔥🔥🔥 - page 212. (Read 87481 times)

newbie
Activity: 4
Merit: 0
Great idea, combined with the changes and innovation of the blockchain, genius
copper member
Activity: 261
Merit: 153
In order to prevent thread tampering, we have uploaded the hash of the chain's last element/future selected blocks/code to IPFS

https://ipfs.io/ipfs/QmNWhtSLweCSxT7dQXDNS7NabmPBGb9n71DMMEjSS2Qini
copper member
Activity: 261
Merit: 153
Baccarat seed event
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
3aa3ac48f926071d6969702dbd7c3c0a85faf498f8a6081866ef4cf12d428c96 .

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 CryptoJS = require("crypto-js");

function seedGenerator(hash, salt) {
  const hmac = CryptoJS.HmacSHA256(CryptoJS.enc.Hex.parse(hash), salt);
  return hmac.toString(CryptoJS.enc.Hex);
}

function createNums(allNums, hash) {
  const nums = [];
  let h = CryptoJS.SHA256(hash).toString(CryptoJS.enc.Hex);
  allNums.forEach((c) => {
    nums.push({ num: c, hash: h });
    h = h.substring(1) + h.charAt(0);
  });
  nums.sort(function (o1, o2) {
    if (o1.hash < o2.hash) {
      return -1;
    } else if (o1.hash === o2.hash) {
      return 0;
    } else {
      return 1;
    }
  });
  return nums;
}

function getTotalPoint(points) {
  let count = 0;
  points.forEach((point) => {
    let _point = point & 0xf;
    count += _point >= 10 ? 0 : _point;
  });
  return count % 10;
}

function playing(allCards, startIndex) {
  const playerCards = [allCards[startIndex], allCards[startIndex + 2]];
  const bankerCards = [allCards[startIndex + 1], allCards[startIndex + 3]];

  const playerTotalPoint = getTotalPoint(playerCards);
  const bankerTotalPoint = getTotalPoint(bankerCards);

  const lastCard = allCards[startIndex + 5];

  const getLastPoint = function (cards) {
    return getTotalPoint([cards[2]]);
  };

  if (bankerTotalPoint >= 8 || playerTotalPoint >= 8) {
    // get result
  } else if (playerTotalPoint >= 6 && bankerTotalPoint >= 6) {
    // get result
  } else {
    if (playerTotalPoint <= 5) {
      playerCards.push(allCards[startIndex + 4]);
    }

    if (playerCards.length == 2) {
      if (bankerTotalPoint <= 5) {
        bankerCards.push(allCards[startIndex + 4]);
      }
    } else if (bankerTotalPoint <= 2) {
      bankerCards.push(lastCard);
    } else if (
      bankerTotalPoint == 3 &&
      playerCards.length == 3 &&
      getLastPoint(playerCards) != 8
    ) {
      bankerCards.push(lastCard);
    } else if (
      bankerTotalPoint == 4 &&
      playerCards.length == 3 &&
      getLastPoint(playerCards) >= 2 &&
      getLastPoint(playerCards) <= 7
    ) {
      bankerCards.push(lastCard);
    } else if (
      bankerTotalPoint == 5 &&
      playerCards.length == 3 &&
      getLastPoint(playerCards) >= 4 &&
      getLastPoint(playerCards) <= 7
    ) {
      bankerCards.push(lastCard);
    } else if (
      bankerTotalPoint == 6 &&
      playerCards.length == 3 &&
      getLastPoint(playerCards) >= 6 &&
      getLastPoint(playerCards) <= 7
    ) {
      bankerCards.push(lastCard);
    }
  }
  let result = {
    player: {
      points: playerCards.map((card) => createCardFram(card)),
      totalPoint: getTotalPoint(playerCards),
    },
    banker: {
      points: bankerCards.map((card) => createCardFram(card)),
      totalPoint: getTotalPoint(bankerCards),
    },
  };
  return result;
}
function getAllCards(hash, salt) {
  const allNums = [
    161,
    180,
    199,
    218,
    162,
    205,
    181,
    200,
    219,
    163,
    182,
    220,
    201,
    177,
    196,
    215,
    170,
    178,
    221,
    197,
    216,
    171,
    179,
    198,
    172,
    217,
    193,
    212,
    167,
    186,
    194,
    173,
    213,
    168,
    187,
    195,
    214,
    188,
    169,
    209,
    164,
    183,
    202,
    210,
    189,
    165,
    184,
    203,
    211,
    166,
    204,
    185,
  ];
  let seed = seedGenerator(hash, salt);
  let finalNums = createNums(allNums, seed);
  seed = String(CryptoJS.SHA256(seed));
  finalNums = createNums(finalNums, seed);
  let allCards = finalNums
    .slice(0, 6)
    .map((m) => m.num)
    .map((item) => item.num);
  return allCards;
}

function createCardFram(card) {
  const CARDS = " ,A,2,3,4,5,6,7,8,9,10,J,Q,K".split(",");
  const SUITS = ["♠️", "♥️", "♣️", "♦️"];
  let suitsIndex = (card & 240) / 16 - 10;
  let suits = SUITS[suitsIndex];
  let point = CARDS[card % 16];
  let color = suitsIndex % 2 === 0 ? "black" : "red";
  return {
    color,
    suits,
    point,
  };
}

function verifyBaccarat(seed, salt) {
  let allCards = getAllCards(seed, salt);
  let result = playing(allCards, 0);
  console.log(Seed: ${seed} Salt: ${salt});
  console.log(Banker points: ${result.banker.totalPoint} cards: ${result.banker.points.map(m => { return m.color + m.suits + m.point; })});
  console.log(Player points: ${result.player.totalPoint} cards: ${result.player.points.map(m => { return m.color + m.suits + m.point; })});
  console.log("")
  return result;
}

// entry
verifyBaccarat("GAME_HASH", "SALT");

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 654,460 .
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.
copper member
Activity: 261
Merit: 153
Just want to confirm why a new account created a thread specifically for the US Presidental Elections hosted by your site?

https://bitcointalksearch.org/topic/the-ultimate-presidential-battle-of-2020-bcgame-5284554

Is that account connected with your admin also?
Should just post that current game on this thread.

That account is not affiliated with us. It's probably one of our supporters.
hero member
Activity: 2744
Merit: 588
Just want to confirm why a new account created a thread specifically for the US Presidental Elections hosted by your site?

https://bitcointalksearch.org/topic/the-ultimate-presidential-battle-of-2020-bcgame-5284554

Is that account connected with your admin also?
Should just post that current game on this thread.
copper member
Activity: 261
Merit: 153
Bc.game has come so far from the craptastic lag and bug fest it used to be. By far one of my favorite sites to deposit at now. The Hilo game is my personal choice.
And now you can actually earn interest on your vaulted coins?? No one offers that!
Bc is just giving away money!

Sir, you sound a little bit like a shill.

THANK YOU!!!

Considering, I didn't pay you for that comment and nobody else would, I have to assume that we are actually as awesome as you testified. There might be a sweet Halloween surprise in your inbox too. Hopefully it's a treat and not a trick.

I will have you know it was not shill. I can provide screenshots between me and the owner where I told him the exact same thing. Bc has come a long way! I'm excited to be along for the ride to the next bigger and better update!

Sir yes sir.
member
Activity: 356
Merit: 12
Bc.game has come so far from the craptastic lag and bug fest it used to be. By far one of my favorite sites to deposit at now. The Hilo game is my personal choice.
And now you can actually earn interest on your vaulted coins?? No one offers that!
Bc is just giving away money!

Sir, you sound a little bit like a shill.

THANK YOU!!!

Considering, I didn't pay you for that comment and nobody else would, I have to assume that we are actually as awesome as you testified. There might be a sweet Halloween surprise in your inbox too. Hopefully it's a treat and not a trick.

I will have you know it was not shill. I can provide screenshots between me and the owner where I told him the exact same thing. Bc has come a long way! I'm excited to be along for the ride to the next bigger and better update!
full member
Activity: 1134
Merit: 105
i love bcgame , the admin is awesome , and prize of the race is quiet higher than other site if you notice .
the crash game is good, more option setting , new update is cool , we got vault now so far. LOVE BC GAME . LOVE COCO

We love you too. We are always trying to be better than we were yesterday..

Is there any plan of yours of starting a signature campaign or a social media campaign. It can give boost your business quickly. Also, you can run any special giveaway campaign only for the users of bitcointalk.
legendary
Activity: 2982
Merit: 1028
Thanks a lot for introducing so many bonuses especially the Shit Code bonus  Smiley
By the way is there any conversation of the coins within the site ? For example if i got doge or eth as a bonus and want to convert it in btc ?

We have a third party exchange service through CoinSwitch. It works and is usuallypretty fast. But sometimes, it can take 30 minutes off-blockchain wait time though before they even process the swap. We do plan to add our own in-house, instant exchange service in the near future.

That's nice addition, for sure many gamblers will love it changing their coin inside the house right away.

With so many bonuses, it's quite interesting to see more and more gamblers to participate and start using your house, though there are lots of competitions but with your continuous efforts to bring more attractive offers, gamblers will surely love to stay and enjoy the perks.

copper member
Activity: 261
Merit: 153
i love bcgame , the admin is awesome , and prize of the race is quiet higher than other site if you notice .
the crash game is good, more option setting , new update is cool , we got vault now so far. LOVE BC GAME . LOVE COCO

We love you too. We are always trying to be better than we were yesterday..
copper member
Activity: 261
Merit: 153
Bc.game has come so far from the craptastic lag and bug fest it used to be. By far one of my favorite sites to deposit at now. The Hilo game is my personal choice.
And now you can actually earn interest on your vaulted coins?? No one offers that!
Bc is just giving away money!

Sir, you sound a little bit like a shill.

THANK YOU!!!

Considering, I didn't pay you for that comment and nobody else would, I have to assume that we are actually as awesome as you testified. There might be a sweet Halloween surprise in your inbox too. Hopefully it's a treat and not a trick.
copper member
Activity: 261
Merit: 153
In my opinion its an awesome idea, since its up ive been trying it and i actually like it. Im actually gonna play crash from now on.

Crash is for those with iron will. Best of luck to you. Check your inbox for some Halloween candy.
jr. member
Activity: 265
Merit: 1
i love bcgame , the admin is awesome , and prize of the race is quiet higher than other site if you notice .
the crash game is good, more option setting , new update is cool , we got vault now so far. LOVE BC GAME . LOVE COCO
member
Activity: 356
Merit: 12
Bc.game has come so far from the craptastic lag and bug fest it used to be. By far one of my favorite sites to deposit at now. The Hilo game is my personal choice.
And now you can actually earn interest on your vaulted coins?? No one offers that!
Bc is just giving away money!
copper member
Activity: 261
Merit: 153

Come check them out today and try your luck! https://bc.game/bonus

I just checked you site today and found it to be really interesting. I wonder why this does not clicked to me before.  Sad
What amused me a lot is the Trump and Biden game at https://tbbattle.bc.game/.  Just want to know how this T and B inhouse coins works. The only way to get them is from the daily free spins ?

https://bitcointalksearch.org/topic/m.55419413

and

https://bitcointalksearch.org/topic/m.55376733

Full explanation here.
copper member
Activity: 261
Merit: 153
Thanks a lot for introducing so many bonuses especially the Shit Code bonus  Smiley
By the way is there any conversation of the coins within the site ? For example if i got doge or eth as a bonus and want to convert it in btc ?

We have a third party exchange service through CoinSwitch. It works and is usuallypretty fast. But sometimes, it can take 30 minutes off-blockchain wait time though before they even process the swap. We do plan to add our own in-house, instant exchange service in the near future.
hero member
Activity: 2464
Merit: 877

Come check them out today and try your luck! https://bc.game/bonus

I just checked you site today and found it to be really interesting. I wonder why this does not clicked to me before.  Sad
What amused me a lot is the Trump and Biden game at https://tbbattle.bc.game/.  Just want to know how this T and B inhouse coins works. The only way to get them is from the daily free spins ?
newbie
Activity: 4
Merit: 0
I have seen a very fast growth rate on your website.
I opened it a long time ago and it was still chaotic.
  very creatively.
legendary
Activity: 3206
Merit: 1174
Leading Crypto Sports Betting & Casino Platform
Thanks a lot for introducing so many bonuses especially the Shit Code bonus  Smiley
By the way is there any conversation of the coins within the site ? For example if i got doge or eth as a bonus and want to convert it in btc ?
copper member
Activity: 261
Merit: 153
Hey everybody, we have some real exciting bonuses available for you!



The Task Bonus:
- It is as simple as that!
- Complete tasks
- Earn rewards

Master Medal:
- Activate medals to recieve rewards

- Activate 5 medals: 3000 Doge
- Activate 10 medals: 1 ETH + 10000 Doge
- Activate 15 medals: 0.1 BTC + 10 ETH + 50000 Doge
- Activate 20 medals: 1 BTC + 10000 Doge

Shit Code
- Shitcodes are bonus codes that will add a gift to your balance at BC Game

The second group of bonuses that we are going to discuss is Daily Bonuses:

Roll Competition:
- The Roll Competition is a fee to play dice game that only occurs once per day. The player that rolls the highest wins a nice reward.

Where is COCO?
- Evgery 6 hours, COCO will appear randomly for the next ten minutes and exist for one minute. Click on the COCO to get your reward.

Lucky Spin:
- You get one free spin every day.

Come check them out today and try your luck! https://bc.game/bonus
Jump to: